二叉搜尋樹的基本操作

2021-09-30 14:39:59 字數 1345 閱讀 9325

//--------------------------二叉搜尋樹--------------------

//定義二叉搜尋樹節點的結構體

typedef struct binarytreebinarytree;

//二叉搜尋樹插入節點

void inserttreenode(binarytree *phead, binarytree *newnode)

newnode->m_parent = prenode;

if(newnode->m_value > prenode->m_value)

prenode->m_right = newnode;

else

prenode->m_left = newnode;

}//建立二叉搜尋樹

binarytree *createtree(binarytree *phead)

return phead;

}//中序遍歷

void inodertreenode(binarytree* phead)

inodertreenode(phead->m_left);

printf("%d ",phead->m_value);

inodertreenode(phead->m_right);

}//二叉搜尋樹的查詢

bool tree_search(binarytree *phead, int value)

if(tmp)

return true;

else

return false;

}//二叉搜尋樹的最小值對應的的節點

binarytree *tree_minimum(binarytree *phead)

//二叉搜尋樹最大的節點

binarytree *tree_maximum(binarytree *phead)

//二叉搜尋樹節點的前驅節點

binarytree *tree_successor(binarytree *phead, binarytree *x)

return p;

}//二叉搜尋樹節點替代,用v代替u

void transplant(binarytree *phead,binarytree *u, binarytree *v)

//二叉搜尋樹節點的刪除節點

void tree_deletenode(binarytree *phead, binarytree *delnode)

y->m_left = delnode->m_left;

y->m_left->m_parent = y; }}

int main()

二叉搜尋樹的基本操作

建立乙個非負二叉搜尋樹 1表空結點 編寫查詢函式,層序遍歷函式,插入函式,刪除函式,查詢最大值最小值函式 輸入該樹和要查詢的值 輸出 如果找到,列印出 x is found 沒找到列印出 not found 列印出層序遍歷序列 刪除最大值和最小值 刪除成功輸出 x is delete 最後再進行一層...

二叉搜尋樹的基本操作

二叉搜尋樹 binary search tree 它或者是一棵空樹,或者是具有下列性質的二叉樹 若它的左子樹不空,則左子樹上所有結點的值均小於它的根結點的值 若它的右子樹不空,則右子樹上所有結點的值均大於它的根結點的值 它的左 右子樹也分別為二叉搜尋樹樹。節點設定 typedef int datat...

二叉搜尋樹的基本操作

pragma once typedef int datatype typedef struct bstreenode bstnode include include include bstnode buybstreenode datatype data pnewnode data data pnew...