c_cpp 94.二叉树有序遍历 - 难度中等 - 2018.9.7
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 94.二叉树有序遍历 - 难度中等 - 2018.9.7相关的知识,希望对你有一定的参考价值。
// 递归法:
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
void iTra(TreeNode* root, vector<int>& re) {
if(root == NULL) return;
iTra(root->left, re);
re.insert(re.end(), root->val);
iTra(root->right, re);
}
vector<int> inorderTraversal(TreeNode* root) {
vector<int> result;
iTra(root, result);
return result;
}
};
以上是关于c_cpp 94.二叉树有序遍历 - 难度中等 - 2018.9.7的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp 236.二叉树的最低共同祖先 - 难度中等 - 2018.9.13
c_cpp 94.二叉树Inorder遍历
103. 二叉树的锯齿形层次遍历-中等难度
求二叉树的层序遍历(NC15/考察次数Top6/难度中等)
重建二叉树(NC12/考察次数Top31/难度中等)
236. 二叉树的最近公共祖先-中序遍历-中等难度