0
我在寫一個哈希表代碼。根據表大小採取模式。我想從表-1開始,並且null。我明白它是空的。 Java哈希表就緒。所以我沒有找到很多例子。Java哈希表填充
我的fill_in方法未運行。
class Node{
int index;
int number;
Node next;
public Node(int index,int number,Node next){
this.index=index;
this.next=next;
this.number=number;
}
}
class Table{
int max_row;
public Table(int size){
this.max_row=size;
}
Node rows[]= new Node[max_row];
public void fill_in(){
for(int i=0; i<max_row;i++)
rows[i]=new Node(-1,-1,null);
}
「不運行」或「不編譯」? –
ArrayIndexOutOfBoundsException – mrsengineer
您的尺寸是多少?你的輸入示例? – Frakcool