0
単語頻度リストでノードを検索しようとしています。そうでなければnullを返します。私のメソッドはnullを返すだけで、私は理由を理解できませんでした!誰かが私が何かを見逃したら教えてもらえますかノードを見つけて挿入する
private class Node implements Comparable<Node>{
private E key;
private int count;
private Node next;
Node(E item){
key = item;
count = 1;
next = null;
}
}
private Node find(Node n){
Node current = first;
while(current!=null && !current.equals(n)){
current=current.next;
}
if(current!=null)
return current;
else
return null;
}
を使用しています。例えば。どこから来ているのですか?どのように 'Node'sのリンクリストを構築/初期化していますか?私の直感は、あなたのリストを構築するとき、あなたは 'next'を設定しないかもしれないので、トラバーサルは実際に起こっていないということです。あなたはデバッガを使ってみましたか? – pyepye