線索二叉樹(解釋)

2021-06-23 00:42:18 字數 534 閱讀 1315

struct tbtnode

;//tbtnode與btnode相差了ltag和rtag分別代表左邊和右邊是否為線索;如果左邊是線索,那麼ltag=1,否則為0;如果右邊是線索,那麼rtag=1,否則為0;

tbtnode* pre;//代表線索化中的前乙個訪問節點

void thread(tbtnode* &p)//輸入根節點,建立線索化;

else

p->ltag=0;

if(pre->rchild==null)//如果pre的右節點為空,那麼右孩子指標指向直接後繼p

else

pre->rtag=0;

pre=p;//此時pre變成了p節點

thread(p->rchild);//對p節點的右節點線索化 }}

tbtnode* createthread(tbtnode* &b)

}

void thinorder(tbtnode* tb)//這是遍歷線索二叉樹

}

線索二叉樹

當用二叉鍊錶作為二叉樹的儲存結構時,因為每個結點中只有指向其左 右兒子結點的指標,所以從任一結點出發只能直接找到該結點的左 右兒子。在一般情況下靠它無法直接找到該結點在某種遍歷序下的前驅和後繼結點。如果在每個結點中增加指向其前驅和後繼結點的指標,將降低儲存空間的效率。我們可以證明 在n個結點的二叉鍊...

線索二叉樹

1.線索二叉樹結構和操作定義 threadbintree.h 功能 線索標誌域所有值 typedef enumnodeflag 功能 線索二叉樹結構體 typedef struct threadtreethreadbintree 前驅節點指標 threadbintree previous null ...

線索二叉樹

原始碼 中序線索二叉樹 author 菜鳥 version 2014.7.23 include include include typedef char datatype using namespace std 定義線索二叉樹的結構體 typedef struct nodethreadbitreen...