哈希表

2021-04-07  本文已影响0人  Cook1fan
image.png
image.png
image.png
image.png
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;
            }
        }
    }
}

// 创建HashTab 管理多条链表
class HashTab {
    private final EmpLinkedList[] empLinkedListArray;
    private final int size;

    // 构造器
    public HashTab(int size) {
        this.size = size;
        // 初始化 empLinkedListArray
        empLinkedListArray = new EmpLinkedList[size];
        // 这是分别初始化每个链表
        for (int i = 0; i < size; i++) {
            empLinkedListArray[i] = new EmpLinkedList();
        }
    }

    // 添加雇员
    public void add(Emp emp) {
        // 根据员工的id,得到该员工应当添加到那条链表
        int empLinkedListNo = hashFun(emp.id);
        empLinkedListArray[empLinkedListNo].add(emp);
    }

    // 遍历
    public void list() {
        for (int i = 0; i < size; i++) {
            empLinkedListArray[i].list(i);
        }
    }

    // 根据输入的id,查找雇员
    public void findEmpById(int id) {
        // 使用散列函数确定到那条链表查找
        int empLinkedListNo = hashFun(id);
        Emp emp = empLinkedListArray[empLinkedListNo].findEmpById(id);
        if (emp != null) { // 找到
            System.out.printf("在第%d条链表中找到雇员id=%d,name=%s\n", (empLinkedListNo + 1), id, emp.name);
        } else {
            System.out.println("在哈希表中,没有找到该雇员");
        }
    }

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

// 表示雇员
class Emp {
    public int id;
    public String name;
    public Emp next;

    public Emp(int id, String name) {
        this.id = id;
        this.name = name;
    }
}

// 创建EmpLinkedList 表示链表
class EmpLinkedList {
    private Emp head; // 头指针,执行第一个Emp.因此我们这个链表的head是直接指向第一个Emp

    // 添加雇员到链表
    // 说明
    // 1 假定,当添加雇员时,id是自增长,即id的分配总是从小到大
    // 因此我们将该雇员直接添加到本链表的最后即可
    public void add(Emp emp) {
        // 如果是添加第一个雇员
        if (head == null) {
            head = emp;
            return;
        }
        // 如果不是第一个雇员,则使用一个辅助指针,帮助定位到最后
        Emp curEmp = head;
        // 说明到链表最后
        while (curEmp.next != null) {
            curEmp = curEmp.next; // 后移
        }
        // 退出时直接将emp加入链表
        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();
    }

    // 根据id查找雇员
    // 如果查找到,就返回Emp,如果没有找到,就返回null
    public Emp findEmpById(int id) {
        // 判断链表是否为空
        if (head == null) {
            System.out.println("链表为空");
            return null;
        }
        // 辅助指针
        Emp curEmp = head;
        // 找到
        // 这时curEmp就指向要查找的雇员
        while (curEmp.id != id) {
            // 退出
            if (curEmp.next == null) {
                curEmp = null;
                break;
            }
            curEmp = curEmp.next;//后移
        }
        return curEmp;
    }
}
上一篇下一篇

猜你喜欢

热点阅读