第十六周 6.13 --- 6.19
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第十六周 6.13 --- 6.19相关的知识,希望对你有一定的参考价值。
6.19
我说15周怎么这么长...原来忘记新开一篇了...sigh 0-0
leetcode 144 Binary Tree Preorder Traversal
二叉树的前序遍历,非递归实现
1 class Solution{ 2 public: 3 vector<int> preorderTraversal(TreeNode* root){ 4 vector<int> ans; 5 stack<TreeNode*> s; 6 if(root == NULL) return ans; 7 else{ 8 s.push(root); 9 while(!s.empty()){ 10 TreeNode* tmp = s.top();s.pop(); 11 ans.push_back(tmp->val); 12 if(tmp->right != NULL) s.push(tmp->right); 13 if(tmp->left != NULL) s.push(tmp->left); 14 } 15 return ans; 16 } 17 } 18 };
以上是关于第十六周 6.13 --- 6.19的主要内容,如果未能解决你的问题,请参考以下文章