码迷,mamicode.com
首页 > 其他好文 > 详细

145. 二叉树的后序遍历

时间:2020-04-02 19:58:42      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:eve   cto   val   stack   treenode   div   tree   turn   color   

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */
10 class Solution 
11 {
12     vector<int> res;
13 public:
14     vector<int> postorderTraversal(TreeNode* root) 
15     {
16         if(!root) return res;
17         stack<TreeNode*> s;
18         s.push(root);
19         while(!s.empty())
20         {
21             root = s.top();
22             s.pop();
23             res.push_back(root->val);
24             if(root->left) s.push(root->left);
25             if(root->right) s.push(root->right);
26         }
27         reverse(res.begin(),res.end());
28         return res;
29     }
30 };

 

145. 二叉树的后序遍历

标签:eve   cto   val   stack   treenode   div   tree   turn   color   

原文地址:https://www.cnblogs.com/yuhong1103/p/12622361.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!