首页 > 代码库 > 用递归做的前序中序后序遍历
用递归做的前序中序后序遍历
#include<iostream> #include<vector> #include<string> #include<algorithm> #include<numeric> using namespace std; class node{ public: int val; node* left; node* right; node():val(0),left(NULL),right(NULL){} }; node* createTree() { node* head = new node[14]; for(int i = 0;i<10;i++) { head[i].val = i; if(2*i+1 < 10) head[i].left = head + 2*i + 1; if(2*i+2 < 10) head[i].right = head + 2*i + 2; } return head; } void searchfirst(node* head) { if(NULL == head) return; else{ cout<<head->val<<" "; searchfirst(head->left); searchfirst(head->right); } } void searchmiddle(node* head) { if(NULL == head) return; else{ searchmiddle(head->left); cout<<head->val<<" "; searchmiddle(head->right); } } void searchlast(node* head) { if(NULL == head) return; else{ searchlast(head->left);///别忘了你一直没调通在哪里??? searchlast(head->right);///不要万不得已,请不要复制自己写过的代码 cout<<head->val<<" "; } } int main() { node* t = createTree(); searchfirst(t); cout<<endl; searchmiddle(t); cout<<endl; searchlast(t); cout<<endl; }
不要复制自己写过的代码~
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。