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

leetcode94 - Binary Tree Inorder Traversal - medium

时间:2020-08-17 17:50:25      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:bin   treenode   empty   example   null   span   top   via   相对   

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

Example:

Input: [1,null,2,3]
   1
         2
    /
   3

Output: [1,3,2]

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

 
Inorder: root in the middle
先一路traverse到最左边的leaf node,一路上把经过的node都push进stack。最先pop出来的就是起点,也相当于一个夹在中间的root(它的left child是null),所以去到它的right child,再如此循环。因为不涉及修改node,直接拿root来traverse就行,stack里都是相对来说的left node。
 
实现:
class Solution {
public:
    vector<int> inorderTraversal(TreeNode* root) {
        
        vector<int> res;
        if (!root) return res;
        
        stack<TreeNode*> st;
        while (!st.empty() || root){
            while (root){
                st.push(root);
                root = root->left;
            }
            root = st.top();
            st.pop();
            res.push_back(root->val);
            root = root->right;
        }
        
        return res;
        
    }
};

 

leetcode94 - Binary Tree Inorder Traversal - medium

标签:bin   treenode   empty   example   null   span   top   via   相对   

原文地址:https://www.cnblogs.com/xuningwang/p/13508518.html

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