先序,中序,後序線索二叉樹

//後序線索,這種方法不容易想到 #include<iostream> #include<cstring> #include<cstdio> #include<algorithm> using namespace std; struct TREE{ int val; TREE *ch[2]; TREE *thread;//該節點的線索的下一個節點 TRE
相關文章
相關標籤/搜索