aboutsummaryrefslogtreecommitdiff
path: root/Computer_Science/leetcode/39-combination_sum.c~
diff options
context:
space:
mode:
authorSteve Lee <me@xiangyangli.com>2017-12-26 01:33:40 +0800
committerSteve Lee <me@xiangyangli.com>2017-12-26 01:33:40 +0800
commit79a9c52fa923fc78074d88463449a8b7f95ca3ef (patch)
tree80c2b596a7c41124845771dca99abd364e89d4c4 /Computer_Science/leetcode/39-combination_sum.c~
parent2e0e0f39d49296f0ffb99aea533a527174521d61 (diff)
download42-79a9c52fa923fc78074d88463449a8b7f95ca3ef.tar.xz
42-79a9c52fa923fc78074d88463449a8b7f95ca3ef.zip
update leetcode solution
Diffstat (limited to 'Computer_Science/leetcode/39-combination_sum.c~')
-rw-r--r--Computer_Science/leetcode/39-combination_sum.c~32
1 files changed, 32 insertions, 0 deletions
diff --git a/Computer_Science/leetcode/39-combination_sum.c~ b/Computer_Science/leetcode/39-combination_sum.c~
new file mode 100644
index 0000000..6b1dd4a
--- /dev/null
+++ b/Computer_Science/leetcode/39-combination_sum.c~
@@ -0,0 +1,32 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+/**
+ * Return an array of arrays of size *returnSize.
+ * The sizes of the arrays are returned as *columnSizes array.
+ * Note: Both returned array and *columnSizes array must be malloced, assume caller calls free().
+ */
+void backtracking(int** result, int current, int currentSize, int left, int* returnSize, int** columnSizes)
+{
+ if(left < 0)
+ return;
+ else if(left > 0)
+ return backtracking(result, current, currentSize + 1, left, returnSize);
+ else {
+ *(result + *returnSize) = malloc(sizeof(int) * currentSize);
+ }
+}
+
+int** combinationSum(int* candidates, int candidatesSize, int target, int** columnSizes, int* returnSize) {
+ int i;
+ int **result;
+ result = malloc(sizeof(int *) * 100);
+ if(candidatesSize == 0)
+ return NULL;
+
+ for(i = 0; i < candidatesSize; i++) {
+ backtracking(result, candidates[i], i + 1, target, returnSize, columnSizes);
+ }
+
+ return result;
+}