C#實(shí)現(xiàn)二叉排序樹(shù)代碼實(shí)例_第1頁(yè)
C#實(shí)現(xiàn)二叉排序樹(shù)代碼實(shí)例_第2頁(yè)
C#實(shí)現(xiàn)二叉排序樹(shù)代碼實(shí)例_第3頁(yè)
C#實(shí)現(xiàn)二叉排序樹(shù)代碼實(shí)例_第4頁(yè)
C#實(shí)現(xiàn)二叉排序樹(shù)代碼實(shí)例_第5頁(yè)
已閱讀5頁(yè),還剩2頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

第C#實(shí)現(xiàn)二叉排序樹(shù)代碼實(shí)例若它的左子樹(shù)不為空。則左子樹(shù)上所有的結(jié)點(diǎn)的值均小于跟的結(jié)點(diǎn)值

若它的右子樹(shù)部位空,則右子樹(shù)的所有結(jié)點(diǎn)值均大于它的根結(jié)點(diǎn)的值

它的左右子樹(shù)也分別是二叉排序樹(shù)

1,排序方便

2,查找方便

3,便于插入和刪除

C#鏈?zhǔn)酱鎯?chǔ)二叉排序樹(shù),實(shí)現(xiàn)簡(jiǎn)單的排序,以及查找,具體代碼如下:

namespace_2_1_3二叉排序樹(shù)

///summary

///結(jié)點(diǎn)類(lèi)

////summary

classBSNode

//結(jié)點(diǎn)

publicBSNodeLeftChild{get;set;}

publicBSNodeRightChild{get;set;}

publicBSNodeParent{get;set;}

publicintData{get;set;}

//構(gòu)造方法

publicBSNode(){}

publicBSNode(intitem)

this.Data=item;

usingSystem;

namespace_2_1_3二叉排序樹(shù)

///summary

///二叉排序樹(shù)

////summary

classBSTree

BSNoderoot=null;

///summary

///添加數(shù)據(jù)

////summary

publicvoidAdd(intitem)

//創(chuàng)建新結(jié)點(diǎn)

BSNodenewNode=newBSNode(item);

if(root==null)//若為空,則創(chuàng)建為根結(jié)點(diǎn)

root=newNode;

else

BSNodetemp=root;

while(true)

if(item=temp.Data)//放在temp結(jié)點(diǎn)的右邊

if(temp.RightChild==null)

temp.RightChild=newNode;

newNode.Parent=temp;

break;

else

temp=temp.RightChild;

else//放在temp結(jié)點(diǎn)的左邊

if(temp.LeftChild==null)

temp.LeftChild=newNode;

newNode.Parent=temp;

break;

else

temp=temp.LeftChild;

///summary

///中序遍歷二叉樹(shù)

////summary

publicvoidMiddleBianli()

MiddleBianli(root);

//遞歸方式中序遍歷樹(shù)

privatevoidMiddleBianli(BSNodenode)

if(node==null)return;

MiddleBianli(node.LeftChild);

Console.Write(node.Data+"");

MiddleBianli(node.RightChild);

///summary

///查找方法-1

////summary

publicboolFind1(intitem)

returnFind(item,root);

privateboolFind(intitem,BSNodenode)

if(node==null){returnfalse;}

if(node.Data==item)

returntrue;

else

//利用二叉排序樹(shù)的便利

if(itemnode.Data)

returnFind(item,node.RightChild);

else

returnFind(item,node.LeftChild);

///summary

///查找方法-2

////summary

///paramname="item"/param

///returns/returns

publicboolFind2(intitem)

BSNodetemp=root;

while(true)

if(temp==null)returnfalse;

if(temp.Data==item)returntrue;

if(itemtemp.Data)

temp=temp.RightChild;

else

temp=temp.LeftChild;

publicboolDelete(intitem)

BSNodetemp=root;

while(true)

if(temp==null)returnfalse;

if(temp.Data==item)

Delete(temp);

returntrue;

if(itemtemp.Data)

temp=temp.RightChild;

else

temp=temp.LeftChild;

publicvoidDelete(BSNodenode)

//葉子結(jié)點(diǎn),即無(wú)子樹(shù)情況

if(node.LeftChild==nullnode.RightChild==null)

if(node.Parent==null)

root=null;

elseif(node.Parent.LeftChild==node)

node.Parent.LeftChild=null;

elseif(node.Parent.RightChild==node)

node.Parent.RightChild=null;

return;

//只有右子樹(shù)的情況

if(node.LeftChild==nullnode.RightChild!=null)

node.Data=node.RightChild.Data;

node.RightChild=null;

return;

//只有左子樹(shù)的情況

if(node.LeftChild!=nullnode.RightChild==null)

node.Data=node.LeftChild.Data;

node.LeftChild=null;

return;

//刪除的結(jié)點(diǎn)有左,右子樹(shù)

BSNodetemp=node.RightChild;

while(true)

if(temp.LeftChild!=null)

temp=temp.LeftChild;

else

break;

node.Data=temp.Data;

Delete(temp);

usingSystem;

namespace_2_1_3二叉排序樹(shù)

///summary

///測(cè)試類(lèi)

////summary

classProgram

staticvoidMain(string[]args)

BSTreetree=newBSTree();

int[]data={62,58,28,47,73,99,35,51,93,37};

foreach(intitemindata)

tree.Add(item);

Console.Write("中序遍歷的結(jié)果:");

tree.MiddleBianli();

Console.WriteLine();

Console.WriteLine("Find-1方法查找62是否存在:"+tree.Find1(62));

Console.WriteLine("Find-2方法查找62是否存在:"+tree.Find2(62));

Console.WriteLine("Find-1方法查找63是否存在:"+tree.Find1(63));

Console.WriteLine("Find-2方法查找63是否存在:"+tree.Find2(63

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論