輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列和中序遍歷序列,則重建二叉樹並返回。
/**
* definition for binary tree
*public class treenode
* */
public class solution
//呼叫遞迴
return rebuildtree(pre, 0, pre.length - 1, in, 0, in.length - 1);
}
//重建左右子樹 遞迴傳值給i j m n時要先畫圖確定其在左右子樹的下標
public treenode rebuildtree(int pre, int i, int j, int in, int m, int n)
//確定左右結點的個數 每次都會以新的陣列序列進行
int leftnodes = index - m, rightnodes = n - index;
//賦值根節點
treenode root = new treenode(rootval);
if(leftnodes == 0)
else
if(rightnodes == 0)
else
return root;
}//每次都會呼叫這個函式來找到根節點下標
public int findroot(int target, int tes, int start, int end)
} //不存在就返回負一
return -1;
} }
劍指Offer之重建二叉樹
輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列和中序遍歷序列,則重建二叉樹並返回。該題目用到了遞迴分治的思想。先序遍歷二叉樹的第乙個節點肯定是根節點,那麼在中序序列中找到先序的對應資料的下標。根據前序和中序遍歷的性...
劍指offer 重建二叉樹
重建二叉樹2.cpp 定義控制台應用程式的入口點。題目描述 輸入乙個二叉樹的前序遍歷和中序遍歷,輸出這顆二叉樹 思路 前序遍歷的第乙個節點一定是這個二叉樹的根節點,這個節點將二叉樹分為左右子樹兩個部分,然後進行遞迴求解 include stdafx.h include vector using na...
《劍指offer》重建二叉樹
輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如,則重建二叉樹並返回。輸入乙個樹的前序和中序,例如輸入前序遍歷序列和中序遍歷序列 根據輸入的前序和中序,重建乙個該二叉樹,並返回該樹的根節點。definition for binary...