LeetCode: Binary Tree Inorder Traversal

二叉树中序遍历
本文介绍了一种实现二叉树中序遍历的方法,包括递归和非递归两种方式。递归方法直接利用函数自身进行左右节点的遍历,而非递归方法则通过栈来模拟这一过程。

/**
 * Given a binary tree, return the inorder traversal of its nodes' values.

 * For example:
 * Given binary tree [1,null,2,3],
 * return [1,3,2]
*/

/// Test Unit
/// {1,2,3,#,#,4,#,#,5}
/* 
 *          1
 *         / \
 *        2   3
 *           /
 *          4
 *           \
 *            5
 */



#include <iostream>
#include <vector>
#include <stack>
using namespace std;


struct TreeNode {
    int val;
    TreeNode *left;
    TreeNode *right;
    TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};

// Recursion
class Solution1 {
public:
    vector<int> inorderTraversal(TreeNode *root) {
        vector<int> res;
        inorder(root, res);
        return res;
    }
    void inorder(TreeNode *root, vector<int> &res) {
        if (!root) return;
        if (root->left) inorder(root->left, res);
        res.push_back(root->val);
        if (root->right) inorder(root->right, res);
    }
};

//Non-Recursion
class Solution2 {
public:
    vector<int> inorderTraversal(TreeNode *root){
        vector<int> res;
        stack<TreeNode*> s;
        TreeNode *p=root;
        while(p||!s.empty()){
            while(p){
                s.push(p);
                p=p->left;
            }

            p=s.top();          
            res.push_back(p->val);  
            s.pop();
            p=p->right;

        }
        return res;
    }
};




int main(int argc, char** argv) {
  TreeNode root(1);
  TreeNode node2(2);
  TreeNode node3(3);
  TreeNode node4(4);
  TreeNode node5(5);

  root.left = &node2;
  root.right = &node3;
  node3.left = &node4;
  node4.right = &node5;

  Solution2 t;
  vector<int> v = t.inorderTraversal(&root);     

  /*for (auto i = v.begin(): i != v.end();++i)  //c++11
     cout << *i << " ";
  cout << endl; 
  */

  for(auto i:v)
    cout<< i <<" ";
  cout<<endl;


  return 0;
}
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值