哈希表

哈希表

散列表Hash table,也叫哈希表,是根据关键码值(Key value)而直接进行访问的数据结构。也就是说,它通过把关键码值映射到表中一个位置来访问记录,以加快查找的速度。这个映射函数叫做散列函数,数组叫做[散列]表。

Google 上机题 :

有一个公司,当有新的员工来报道时,要求将该员工的信息加入(id,性别,年龄,住址…),当输入该员工的id时,要求查找到该员工的 所有信息.

要求: 不使用数据库,尽量节省内存,速度越快越好=>哈希表(散列)

package com.yuxi.lesson09;

import java.util.Scanner;

public class HashTabDemo {
    public static void main(String[] args) {

        //创建哈希表
        HashTab hashTab = new HashTab(9);

        //编写菜单
        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();
                    //创建雇员
                    Employee employee = new Employee(id, name);
                    hashTab.add(employee);
                    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;
            }
        }

    }
}
//创建HashTab管理多条链条
class HashTab{
    private EmployeeLinkedList[] employeeLinkedListArray;
    private int size;

    //构造器
    public HashTab(int size) {
        this.size = size;
        //初始化 empLinkedListArray
        employeeLinkedListArray = new EmployeeLinkedList[size];
        //分别初始化每个链表
        for (int i = 0; i < size; i++) {
            employeeLinkedListArray[i] = new EmployeeLinkedList();
        }
    }
    //添加雇员
    public void add(Employee employee){
        //根据员工id,得到该员工应当添加到哪条链条
        int employeeLinkedListNo = hashFun(employee.id);
        //将emp 添加到对应的链表中
        employeeLinkedListArray[employeeLinkedListNo].add(employee);
    }
    //遍历所有的链表,遍历hashtab
    public void list(){
        for (int i = 0; i < size; i++) {
            employeeLinkedListArray[i].list(i);
        }
    }
    //根据输入的id 查找雇员
    public void findEmpById(int id){
        //使用散列函数确定哪条链表查找
        int employeeLinkedListNo = hashFun(id);
        Employee employee = employeeLinkedListArray[employeeLinkedListNo].findEmpById(id);
        if (employee != null){ //找到
            System.out.printf("在第%d条链条中找到雇员id=%d\n",(employeeLinkedListNo+1),id);
        }else {
            System.out.println("在哈希表中,没有找到该雇员~");
        }
    }

    //编写散列函数,使用简单取模法
    public int hashFun(int id){
        return id % size;
    }

}

//表示一个雇员
class Employee{
    public int id;
    public String name;
    public Employee next;//next 默认为null
    public Employee(int id,String name){
        super();
        this.id = id;
        this.name = name;
    }
}
//创建EmployeeLinkedList,表示链表
class EmployeeLinkedList{
    //头指针 ,执行第一个Employee,因此我们这个链表的head 指向第一个Employee
    private Employee head; //默认为空

    //添加雇员到链表
    //说明
    //1,假定,当添加雇员时,id自增长,即id的分配总是从小到大
    //  因此我们将该雇员直接加入本链表的最后即可
    public void add(Employee employee){
        //如果是添加第一个雇员
        if (head == null){
            head = employee;
            return;
        }
        //如果不是第一个雇员,则使用一个辅助指针,帮助定位到最后
        Employee cur = head;
        while (true){
            if (cur.next == null){ //说明链表到最后
                break;
            }
            cur = cur.next;
        }
        //退出时直接将Employee加入链表
        cur.next = employee;
    }
    //遍历链表雇员信息
    public void list(int no){
        if (head == null){ //链表为空
            System.out.println("第" + (no + 1) + "链表为空");
            return;
        }
        System.out.print("第" + (no + 1) + "链表信息为:");
        Employee cur = head;//辅助指针
        while (true){
            System.out.printf("=> id=%d name=%s \t",cur.id,cur.name);
            if (cur.next == null){
                break;
            }
            cur = cur.next;//后移,遍历
        }
        System.out.println();
    }
    //根据id查找雇员
    //如果找到就返回Employee ,没有找到就返回null;
    public Employee findEmpById(int id){
        //判断链表是否为空
        if (head == null){
            System.out.println("链表为空");
            return null;
        }
        //辅助指针
        Employee cur = head;
        while(true){
            if (cur.id == id) {//找到
                break;//这时cur就指向要查找的雇员
            }
            //退出
            if (cur.next == null){ //遍历当前链表没有找到该雇员
                cur = null;
                break;
            }
            cur = cur.next; //后移
        }
        return cur;
    }

}

在这里插入图片描述
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值