Java创建二叉搜索树,实现搜索,插入,删除的操作实例
程序员文章站
2024-02-25 08:28:22
java实现的二叉搜索树,并实现对该树的搜索,插入,删除操作(合并删除,复制删除)
首先我们要有一个编码的思路,大致如下:
1、查找:根据二叉搜索树的数据特点,我们可...
java实现的二叉搜索树,并实现对该树的搜索,插入,删除操作(合并删除,复制删除)
首先我们要有一个编码的思路,大致如下:
1、查找:根据二叉搜索树的数据特点,我们可以根据节点的值得比较来实现查找,查找值大于当前节点时向右走,反之向左走!
2、插入:我们应该知道,插入的全部都是叶子节点,所以我们就需要找到要进行插入的叶子节点的位置,插入的思路与查找的思路一致。
3、删除:
1)合并删除:一般来说会遇到以下几种情况,被删节点有左子树没右子树,此时要让当前节点的父节点指向当前节点的左子树;当被删节点有右子树没有左子树,此时要让当前节点的父节点指向该右子树;当被删节点即有左子树又有右子树时,我们可以找到被删节点的左子树的最右端的节点,然后让这个节点的右或者左“指针”指向被删节点的右子树
2)复制删除:复制删除相对而言是比较简单的删除操作,也是最为常用的删除操作。大致也有以下三种情况:当前节点无左子树有右子树时,让当前右子树的根节点替换被删节点;当前节点无右子树有左子树时,让当前左子树的根节点替换被删除节点;当前被删节点既有左子树又有右子树时,我们就要找到被删节点的替身,可以在被删节点的左子树中找到其最右端的节点,并让这个节点的值赋给被删节点,然后别忘了让此替身节点的父节点指向替身的“指针”为空,(其实在java中无关紧要了,有垃圾处理机制自动进行处理)。你也可以在当前被删节点的右子树的最左端的节点作为替身节点来实现这一过程。
接下来就上代码吧。
首先是## 二叉搜索树节点类 ##
package searchbinarytree; public class searchbinarytreenode<t> { t data; public searchbinarytreenode<t> leftchild; public searchbinarytreenode<t> rightchild; public searchbinarytreenode(){ this.data=null; this.leftchild=this.rightchild=null; } public searchbinarytreenode(t da){ this.data=da; this.leftchild=this.rightchild=null; } public searchbinarytreenode(t da,searchbinarytreenode<t> left,searchbinarytreenode<t>right){ this.data=da; this.leftchild=left; this.rightchild=right; } public t getdata() { return data; } public void setdata(t data) { this.data = data; } public searchbinarytreenode<t> getleftchild() { return leftchild; } public void setleftchild(searchbinarytreenode<t> leftchild) { this.leftchild = leftchild; } public searchbinarytreenode<t> getrightchild() { return rightchild; } public void setrightchild(searchbinarytreenode<t> rightchild) { this.rightchild = rightchild; } public boolean isleaf(){ if(this.leftchild==null&&this.rightchild==null){ return true; } return false; } }
实现二叉搜索树
package searchbinarytree; public class searchbinarytree<t> { searchbinarytreenode<t> root; public boolean isempty(){ if(root==null){ return true; } return false; } public void visit(searchbinarytreenode<t> root){ if(root==null){ system.out.println("this tree is empty!"); } system.out.println(root.getdata()); } public searchbinarytreenode<t> getroot(){ if(root==null){ root=new searchbinarytreenode<t>(); } return root; } public searchbinarytree(){ this.root=null; } /* * 创造一颗二叉树 */ public void createtree(searchbinarytreenode<t> node, t data) { if (root == null) { root = new searchbinarytreenode<t>(); } else { if (math.random() > 0.5) { //采用随机方式创建二叉树 if (node.leftchild == null) { node.leftchild = new searchbinarytreenode<t>(data); } else { createtree(node.leftchild, data); } } else { if (node.rightchild == null) { node.rightchild = new searchbinarytreenode<t>(data); } else { createtree(node.rightchild, data); } } } } /* * 在二查搜索树中进行搜索 */ public searchbinarytreenode<t> search(searchbinarytreenode<t> root,t value){ searchbinarytreenode<t> current=root; while((root!=null)&&(current.getdata()!=value)){ //需要注意的是java中泛型无法比较大小,在实际的使用时我们可以使用常见的数据类型来替代这个泛型,这样就不会出错了 current=(value<current.getdata()?search(current.leftchild,value):search(current.rightchild,value)); } return current; } public searchbinarytreenode<t> insertnode( t value){ searchbinarytreenode<t> p=root,pre=null; while(p!=null){ pre=p; //需要注意的是java中泛型无法比较大小,在实际的使用时我们可以使用常见的数据类型来替代这个泛型,这样就不会出错了 if(p.getdata()<value){ p=p.rightchild; }else{ p=p.leftchild; } } if(root==null){ root=new searchbinarytreenode<t>(value); }else if(pre.getdata()<value){ pre.rightchild=new searchbinarytreenode<t>(value); }else{ pre.leftchild=new searchbinarytreenode<t>(value); } } /* * 合并删除 */ public void deletebymerging(searchbinarytreenode<t> node){ searchbinarytreenode<t> temp=node; if(node!=null){ //若被删除节点没有右子树,用其左子树的根节点来代替被删除节点 if(node.rightchild!=null){ node=node.leftchild; }else if(node.leftchild==null){ //若被删节点没有左子树,用其有字数的最左端的节点代替被删除的节点 node=node.rightchild; }else{ //如果被删节点左右子树均存在 temp=node.leftchild; while(temp.rightchild!=null){ temp=temp.rightchild; //一直查找到左子树的右节点 } //将查找到的节点的右指针赋值为被删除节点的右子树的根 temp.rightchild=node.rightchild; temp=node; node=node.leftchild; } temp=null; } } /* * 复制删除 */ public void deletebycoping(searchbinarytreenode<t> node){ searchbinarytreenode<t> pre=null; searchbinarytreenode<t> temp=node; //如果被删节点没有右子树,用其左子树的根节点来代替被删除节点 if(node.rightchild==null){ node=node.leftchild; }else if(node.leftchild==null){ node=node.rightchild; }else{ //如果被删节点的左右子树都存在 temp=node.leftchild; pre=node; while(temp.rightchild!=null){ pre=temp; temp=temp.rightchild; //遍历查找到左子树的最右端的节点 } node.data=temp.data; //进行赋值操作 if(pre==node){ pre.leftchild=node.leftchild; }else{ pre.rightchild=node.rightchild; } } temp=null; } }
测试类
package searchbinarytree; public class searchbinarytreetest { public static void main(string []args){ searchbinarytree<integer> tree=new searchbinarytree<integer>(); for(int i=1;i<10;i++){ tree.createtree(new searchbinarytreenode<integer>(), i); } //搜索 tree.search(tree.root, 7); //合并删除 tree.deletebymerging(new searchbinarytreenode<integer>(8)); //复制删除 tree.deletebycoping(new searchbinarytreenode<integer>(6)); } }
好了,就是这样!
以上这篇java创建二叉搜索树,实现搜索,插入,删除的操作实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。