Java數據結構:前根+中根還原二叉樹

根據二叉樹前根中根遍歷出來的數組還原二叉樹。 前根:ABDGCEFH           後跟:DGBAECHF 上代碼: private BinaryNode<T> create(T[] prelist, T[] inlist, int preStart, int inStart, int n) { if (n<=0) return null;
相關文章
相關標籤/搜索