摘要:
问题描述:给定一个没有重复数字的序列,返回其所有可能的全排列。 /** *Given a sequence with no duplicate numbers, return all its possible permutations. *given an array int arr[] = {1, 阅读全文
摘要:
问题描述:给定一个无重复元素的数组和一个目标数,找出所有数组中数字和为目标的组合 (数组中的数字可以重复使用)。 /** * problem * an array Arr with no repeated numbers, you can fetch numbers from the array, 阅读全文