在BST预购遍历中,我没有看到我预期的结果 请帮助确认是否存在代码问题或我对预订遍历的工作原理的理解。
节点:
class node implements Comparable<node>{
int v;
node left;
node right;
node(int v){ this.v=v;}
boolean equals(node o){
return(this.v==o.v);
}
@Override public int compareTo(node aThat) {
return this.v<aThat.v?-1:this.v>aThat.v?1:0;
}
public String toString(){ return "->" + this.v;}
}
广告代码 -
public binarySearch(int r){
Random rnd=new Random();
int[] val=new int[r];
for(int i=0;i<r;i++){
val[i]=rnd.nextInt(50);
}
System.out.println("Array -> " + Arrays.toString(val));
root=new node(val[0]);
for(int i=1;i<val.length-1;i++){
insert(root,new node(val[i]));
}
}
插入(积累)代码 -
private void insert(node curr,node c){
if(curr==c){ return;}
if(curr.compareTo(c)<0)
{
if(curr.left==null){curr.left=c; return;}
insert(curr.left,c);
}
else
{
if(curr.right==null){curr.right=c; return;}
insert(curr.right,c);
}
}
遍历代码(预购) -
private void print(node c){
if(c==null) return;
System.out.println(c);
print(c.left);
print(c.right);
}
输入数组 -
[22, 17, 24, 11, 5, 9, 25]
预期(?) -
->22 ->17 ->11 ->5 ->9 ->24
输出 -
->22 ->24 ->17 ->11 ->5 ->9
答案 0 :(得分:1)
您正在使用curr.compareTo(c)<0
(意为&#34; c
更多而不是curr
&#34;)作为放置{{1}的条件在c
的左侧上。我不确定你的意思是什么,但这与此恰恰相反。 (翻转curr
和c
,或将curr
更改为<
,或左右交换。)