LeetCode OJ 145. Binary Tree Postorder Traversal

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode OJ 145. Binary Tree Postorder Traversal相关的知识,希望对你有一定的参考价值。

Given a binary tree, return the postorder traversal of its nodes‘ values.

For example:
Given binary tree {1,#,2,3},

   1
         2
    /
   3

 

return [3,2,1].

Note: Recursive solution is trivial, could you do it iteratively?

 

Subscribe to see which companies asked this question

解答

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     struct TreeNode *left;
 *     struct TreeNode *right;
 * };
 */
/**
 * Return an array of size *returnSize.
 * Note: The returned array must be malloced, assume caller calls free().
 */
int* postorderTraversal(struct TreeNode* root, int* returnSize) {
    int stack[1000], top = -1, i = 0;
    int *return_array = (int*)malloc(sizeof(int) * 1000);
    struct TreeNode *visit = NULL;
    
    while(-1 != top||NULL != root){
        while(NULL != root){
            stack[++top] = root;
            root = root->left;
        }
        root = stack[top];
        if(NULL == root->right||visit == root->right){
            return_array[i++] = root->val;
            top--;
            visit = root;
            root = NULL;
        }
        else{
            root = root->right;
        }
    }
    *returnSize = i;
    return return_array;
}

 


以上是关于LeetCode OJ 145. Binary Tree Postorder Traversal的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode145. Binary Tree Postorder Traversal

leetcode 145. Binary Tree Postorder Traversal

LeetCode145. Binary Tree Postorder Traversal 解题报告

LeetCode 145:Binary Tree Postorder Traversal

LeetCode 145: Binary Tree Postorder Traversal

leetcode145. Binary Tree Postorder Traversal