Given a binary tree, return the preorder traversal of its nodes' values.
For example:
Given binary tree {1,#,2,3}
,
1 \ 2 / 3
return [1,2,3]
.
二叉树前序遍历的非递归版本,C++实现代码:
#include<iostream> #include<new> #include<vector> #include<stack> using namespace std; //Definition for binary tree struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; class Solution { public: vector<int> preorderTraversal(TreeNode *root) { stack<TreeNode*> s; vector<int> vec; if(root==NULL) return vector<int>(); while(root||!s.empty()) { while(root) { s.push(root); vec.push_back(root->val); root=root->left; } if(!s.empty()) { root=s.top(); s.pop(); root=root->right; } } return vec; } void createTree(TreeNode *&root) { int i; cin>>i; if(i!=0) { root=new TreeNode(i); if(root==NULL) return; createTree(root->left); createTree(root->right); } } }; int main() { Solution s; TreeNode *root; s.createTree(root); vector<int> path=s.preorderTraversal(root); for(auto a:path) { cout<<a<<" "; } cout<<endl; }
时间: 2024-09-26 21:34:11