我在链接列表上使用搜索方法这是我的代码
Node item=head;
String help=item.getKonten();
System.out.printf("data to search");
search=input.nextLine();
while (help.compareTo(search)>0){
if (help.equals(search)){
System.out.println ("index " + index);
ktemu=1;
} else {
item=item.getLink();
bantu1=item.getKonten();
}
index++;
}
if (ktemu == 0){
System.out.println("data not found");
}
输出数据:要搜索的 1,2,3,4,5 数据 2 未找到数据任何人都可以指出我的代码哪里出错了所以索引没有显示