-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLeetCode257.c
53 lines (46 loc) · 1.51 KB
/
LeetCode257.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*************************************************************************
> File Name: LeetCode257.c
> Author: ws
> Mail: [email protected]
> Created Time: 2020年02月28日 星期五 15时37分42秒
************************************************************************/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* };
*/
/**
* Note: The returned array must be malloced, assume caller calls free().
*/
#include <math.h>
int getPathCnt(struct TreeNode *root) {
if (root == NULL) return 0;
if (root->left == NULL && root->right == NULL) return 1;
return getPathCnt(root->left) + getPathCnt(root->right);
}
int getResult(struct TreeNode *root, int len, int k, char **ret, char *buff) {
if (root == NULL) return 0;
len += sprintf(buff + len, "%d", root->val);
buff[len] = 0;
if (root->left == NULL && root->right == NULL) {
ret[k] = strdup(buff);
return 1;
}
len += sprintf(buff + len, "->");
int cnt = getResult(root->left, len, k, ret, buff);
cnt += getResult(root->right, len, k + cnt, ret, buff);
return cnt;
}
char ** binaryTreePaths(struct TreeNode* root, int* returnSize){
int pathCnt = getPathCnt(root);
char **ret = (char **)malloc(sizeof(char *) * pathCnt);
int max_len = 10000;
char *buff = (char *)malloc(sizeof(char) * max_len);
getResult(root, 0, 0, ret, buff);
free(buff);
*returnSize = pathCnt;
return ret;
}