p62 輸入前序和中序遍歷的結果(不包含重複的數字),重建二叉樹。
主要是分析兩個序列的規律,然後用遞迴的方式找到每乙個根節點,從而完成構建。
#include#include #include #include #include #include #include #include #include #include #include #include #includeusing namespace std;class node
int value;
node* left,*right;
};node* createtree(vector& pre, vector& mid, int pstart, int pend, int mstart, int mend)
int value = pre[pstart];
node* root = new node(value);
int pos = mstart;
for (; pos <= mend; pos++)
if (mid[pos] == value)
break;
//判斷是否存在錯誤
if (pos > mend)
root->left = createtree(pre, mid, pstart + 1, pstart + pos - mstart, mstart, pos - 1);
root->right = createtree(pre, mid, pstart + pos - mstart+1, pend, pos+1, mend);
return root;
}node* solution(vector& a, vector& b)
void printtree(node* root,int length=0)
int main(int argc, char** args)
; vectorb = ;
node* root = solution(a, b);
printtree(root);
system("pause");
return 0;
}
劍指offer 重建二叉樹
重建二叉樹2.cpp 定義控制台應用程式的入口點。題目描述 輸入乙個二叉樹的前序遍歷和中序遍歷,輸出這顆二叉樹 思路 前序遍歷的第乙個節點一定是這個二叉樹的根節點,這個節點將二叉樹分為左右子樹兩個部分,然後進行遞迴求解 include stdafx.h include vector using na...
《劍指offer》重建二叉樹
輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如,則重建二叉樹並返回。輸入乙個樹的前序和中序,例如輸入前序遍歷序列和中序遍歷序列 根據輸入的前序和中序,重建乙個該二叉樹,並返回該樹的根節點。definition for binary...
劍指offer 重建二叉樹
題目描述 輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列和中序遍歷序列,則重建二叉樹並返回。definition for binary tree struct treenode class solution if ...