数据结构之哈希表
1. 哈希表的基本介绍
散列表(Hashtable
,也叫哈希表),是根据关键码值(Key value
)而直接进行访问的数据结构。也就是说,它通过把关键码值映射到表中一个位置来访问记录,以加快查找的速度。这个映射函数叫做散列函数,存放记录的数组叫做散列表。
2. 需求分析
哈希表(散列)-Google 上机题
- 有一个公司,当有新的员工来报道时,要求将该员工的信息加入(id,性别,年龄,住址..),当输入该员工的id时,要求查找到该员工的 所有信息。
- 要求: 不使用数据库,尽量节省内存,速度越快越好—>哈希表(散列)
- 添加时,保证按照 id 从低到高插入 [课后思考: 如果 id 不是从低到高插入,但要求各条链表仍是从低到高,怎么解决?]
- 使用链表来实现哈希表, 该链表不带表头[即: 链表的第一个结点就存放雇员信息]
3. 代码实现
3.1 构建Emp
类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
class Emp {
public int id;
public String name;
public Emp next;
public Emp(int id, String name) { super(); this.id = id; this.name = name; } }
|
3.2 创建EmpLinkedList
表示链表
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
class EmpLinkedList {
private Emp head;
public void add(Emp emp) { if (head == null) { head = emp; return; }
Emp curEmp = head;
while (true) {
if (curEmp.next == null) { break; }
curEmp = curEmp.next; }
curEmp.next = emp; }
public void list(int no) {
if (head == null) { System.out.println("第" + (no + 1) + "链表为空"); return; } System.out.println("第" + (no + 1) + "链表的信息为:");
Emp curEmp = head;
while (true) {
System.out.printf("id = %d name = %s\t", curEmp.id, curEmp.name); if (curEmp.next == null) { break; } curEmp = curEmp.next; } System.out.println();
}
public Emp findEmpById(int id) {
if (head == null) { System.out.println("链表为空"); return null; }
Emp curEmp = head;
while (true) {
if (curEmp.id == id) { break; }
if (curEmp.next == null) { curEmp = null; break; }
curEmp = curEmp.next;
}
return curEmp; }
}
|
3.3 创建HashTab
管理多条链表
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
class HashTab {
private EmpLinkedList[] empLinkedListArray;
private int size;
public HashTab(int size) { super(); this.size = size; empLinkedListArray = new EmpLinkedList[size];
for (int i = 0; i < size; i++) { empLinkedListArray[i] = new EmpLinkedList(); } }
public void add(Emp emp) { int empLinkedListNo = hashFun(emp.id); empLinkedListArray[empLinkedListNo].add(emp);
}
public void list() { for (int i = 0; i < size; i++) { empLinkedListArray[i].list(i); } }
public void findEmpById(int id) { int empLinkedListNo = hashFun(id);
Emp emp = empLinkedListArray[empLinkedListNo].findEmpById(id);
if (emp != null) { System.out.printf("在第%d条链表中找到雇员,其id=%d\n", (empLinkedListNo + 1), id); } else { System.out.println("在哈希表中,没有找到该雇员"); }
}
public int hashFun(int id) { return id % size; }
}
|
3.4 测试结果
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| public class HashTabDemo {
public static void main(String[] args) {
HashTab hashTab = new HashTab(7);
String key = ""; Scanner scanner = new Scanner(System.in);
while (true) { System.out.println("add: 添加雇员"); System.out.println("list: 遍历雇员"); System.out.println("find: 查找雇员"); System.out.println("exit: 退出系统");
key = scanner.next(); switch (key) { case "add": System.out.println("请输入id:"); int id = scanner.nextInt(); System.out.println("请输入员工姓名:"); String name = scanner.next(); Emp emp = new Emp(id, name); hashTab.add(emp); break; case "list": hashTab.list(); break; case "find": System.out.println("请输入要查找雇员的id"); id = scanner.nextInt(); hashTab.findEmpById(id); break; case "exit": scanner.close(); System.exit(0); default: break; }
}
} }
|
☆