gpt4 book ai didi

java - 创建一个开放的哈希表

转载 作者:行者123 更新时间:2023-11-29 07:36:54 27 4
gpt4 key购买 nike

我是全新的,现在我正在为大学编写代码。我想创建一个开放的哈希表,我编写了这段代码:

public class AuDOpenHashTable extends AuDHashTable {

private LinkedList<Contact>[] table;


public AuDOpenHashTable(int capacity) {
super(capacity);
this.table = new LinkedList[capacity];
}

@Override
public void insert(Contact c) {
int position = hash(c.email);
if (table[position] == null) {
table[position] = new LinkedList<>();
}
table[position].add(c);
}

@Override
public void remove(Contact c) throws NoSuchElementException{
int position = hash(c.email);

if(table[position] != null){
table[position].remove();
}
else{
throw new NoSuchElementException();
}
}

@Override
public Contact getContact(String email)throws NoSuchElementException{
int position = hash(email);
table[position].getContact(email);

if(table[position] != null){
return table[position].get(position);
}
else{
throw new NoSuchElementException();
}
}

public abstract class AuDHashTable {

protected int capacity;
public AuDHashTable(int capacity){
this.capacity = capacity;
}

public abstract void insert(Contact c);

public abstract void remove(Contact c);

public abstract Contact getContact(String email);

protected int hash(String s){
int hash = 0;

for(int i = 0; i < s.length(); i++){
hash += s.charAt(i);
}

hash = hash % capacity;
return hash;
}

public static void main(String[] args) {

AuDClosedHashTable hashtabelle = new AuDClosedHashTable(3);
Contact eins = new Contact("hans.peter@web.de");
Contact zwei = new Contact("selina.meier@gmail.com");
Contact drei = new Contact("alexander.bauer@gmx.de");

hashtabelle.insert(eins);
hashtabelle.insert(zwei);
hashtabelle.insert(drei);


System.out.println(hashtabelle.isFull());
System.out.println(hashtabelle.getIndexOf("hans.peter@web.de"));
System.out.println(hashtabelle.getIndexOf("selina.meier@gmail.com"));
System.out.println(hashtabelle.getIndexOf("alexander.bauer@gmx.de"));


hashtabelle.remove(drei);
System.out.println(hashtabelle.isFull());
System.out.println(hashtabelle.getContact("selina.meier@gmail.com"));
System.out.println(hashtabelle.getContact("hans.peter@web.de"));
System.out.println(hashtabelle.getContact("alexander.bauer@gmx.de"));

AuDOpenHashTable hashtabelle = new AuDOpenHashTable(3);
Contact eins = new Contact("hans.peter@web.de");
Contact zwei = new Contact("selina.meier@gmail.com");
Contact drei = new Contact("alexander.bauer@gmx.de");

hashtabelle.insert(eins);
hashtabelle.insert(zwei);
hashtabelle.insert(drei);

System.out.println(hashtabelle.getContact("selina.meier@gmail.com"));

hashtabelle.remove(zwei);

System.out.println(hashtabelle.getContact("selina.meier@gmail.com"));
}

所以,我的问题出在“getContact()”方法中。如果我想在某个位置显示一个帐户,并且它是该位置的唯一帐户,那么一切正常。但是,如果要显示一个头尾不同的账户,所以有两个账户,它只给我一个账户(大部分不是正确的)。对于这些示例,代码运行良好,但如果我决定选择其他名称,有时它也不起作用。但为了不让事情变得复杂,我想听听您关于如何改进“getContact”方法的建议。提前致谢。

最佳答案

哈希函数会告诉您一个项目可以在哪个桶中,但您仍然需要检查桶中的所有项目是否相等。 getContact 应该遍历 LinkedList 并检查每个联系人的电子邮件,然后只返回具有匹配电子邮件的联系人。 remove 方法也是如此。

关于java - 创建一个开放的哈希表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34579788/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com