leetcode7:binary-tree-preorder-traversal
Posted 滚雪球效应
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode7:binary-tree-preorder-traversal相关的知识,希望对你有一定的参考价值。
题目描述
12/3
/**
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* };
*/
class Solution {
public:
/**
*
* @param root TreeNode类
* @return int整型vector
*/
vector<int> preorderTraversal(TreeNode* root) {
// write code here
vector <int> res;
stack<TreeNode*> s;
if (root==NULL){
return res;
}
s.push(root);
while (!s.empty())
{
TreeNode *cur=s.top();
s.pop();
res.push_back(cur->val);
if (cur->right!=NULL)
s.push(cur->right);
if (cur->left !=NULL)
s.push(cur->left);
}
return res;
}
};
以上是关于leetcode7:binary-tree-preorder-traversal的主要内容,如果未能解决你的问题,请参考以下文章