您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關C++如何基于先序、中序遍歷結果重建二叉樹的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
具體如下:
題目:
輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重復的數字。例如輸入前序遍歷序列{1,2,4,7,3,5,6,8}和中序遍歷序列{4,7,2,1,5,3,8,6},則重建二叉樹并返回。
實現代碼:
#include <iostream> #include <vector> #include <stack> using namespace std; struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; //創建二叉樹算法 TreeNode* reConstructBinaryTree(vector<int> pre, vector<int> mid) { int nodeSize = mid.size(); if (nodeSize == 0) return NULL; vector<int> leftPre, leftMid, rightPre, rightMid; TreeNode* phead = new TreeNode(pre[0]); //第一個當是根節點 int rootPos = 0; //根節點在中序遍歷中的位置 for (int i = 0; i < nodeSize; i++) { if (mid[i] == pre[0]) { rootPos = i; break; } } for (int i = 0; i < nodeSize; i++) { if (i < rootPos) { leftMid.push_back(mid[i]); leftPre.push_back(pre[i + 1]); } else if (i > rootPos) { rightMid.push_back(mid[i]); rightPre.push_back(pre[i]); } } phead->left = reConstructBinaryTree(leftPre, leftMid); phead->right = reConstructBinaryTree(rightPre, rightMid); return phead; } //打印后續遍歷順序 void printNodeValue(TreeNode* root) { if (!root){ return; } printNodeValue(root->left); printNodeValue(root->right); cout << root->val<< " "; } int main() { vector<int> preVec{ 1, 2, 4, 5, 3, 6 }; vector<int> midVec{ 4, 2, 5, 1, 6, 3 }; cout << "先序遍歷序列為 1 2 4 5 3 6" << endl; cout << "中序遍歷序列為 4 2 5 1 6 3" << endl; TreeNode* root = reConstructBinaryTree(preVec, midVec); cout << "后續遍歷序列為 "; printNodeValue(root); cout << endl; system("pause"); } /* 測試二叉樹形狀: 1 2 3 4 5 6 */
運行結果:
先序遍歷序列為 1 2 4 5 3 6 中序遍歷序列為 4 2 5 1 6 3 后續遍歷序列為 4 5 2 6 3 1 請按任意鍵繼續. . .
感謝各位的閱讀!關于“C++如何基于先序、中序遍歷結果重建二叉樹”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。