257. 二叉树的所有路径

给定一个二叉树,返回所有从根节点到叶子节点的路径。

说明: 叶子节点是指没有子节点的节点。

示例:

输入:

   1
 /   \
2     3
 \
  5

输出: ["1->2->5", "1->3"]

解释: 所有根节点到叶子节点的路径为: 1->2->5, 1->3

 

void EveryPath(struct TreeNode *root,char **bin_trees,int *path,int depth,int *returnSize)
{
    int i;
    if (root ==NULL)
        return ;
    if (root->left ==NULL && root->right ==NULL){
        path[depth]=root->val;
        bin_trees[*returnSize] =(char *)calloc(1,sizeof(char *) *100);
        for(i=0;i<depth ;i++)
        {
            sprintf(bin_trees[*returnSize],"%s%d->",bin_trees[*returnSize],path[i]);
        }
        sprintf(bin_trees[*returnSize],"%s%d",bin_trees[*returnSize],path[i]);
        *returnSize+=1;
    }else{
        path[depth++]=root->val;
        EveryPath(root->left,bin_trees,path,depth,returnSize);
        EveryPath(root->right,bin_trees,path,depth,returnSize);
    }
}
char ** binaryTreePaths(struct TreeNode* root, int* returnSize){  
    *returnSize =0;
    int path[100]={0};
    char **bin_trees =(char **)malloc(sizeof(char *) *100);
    if (root==NULL)
        return NULL;
    EveryPath(root,bin_trees,path,0,returnSize);
    return bin_trees;
}

这道题的问题在于输入[]时,提交时报错了

执行出错信息:Line 209: Char 3: runtime error: load of null pointer of type 'char *' (__Serializer__.c)

错误的原因

需要将*returnSize 设置为0 在返回。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章