數據結構-二叉樹(4)利用前序序列和中序序列惟一肯定二叉樹

肯定方法:html template <class T> BinTreeNode<T> *createBinaryTree(T *VLR,T *LVR,int n){ if(n==0) return NULL; int k=0; while (VLR[0]!=LVR[k]) k++; BinTreeNode<T> *t=new BinTreeNode<T>(VLR[
相關文章
相關標籤/搜索