哈希表(java)

哈希表

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

哈希表问题举例:有一个公司,当有新的员工来报道时,要求将该员工的信息加入(id,性别,年龄,住址…),当输入员工的id时,要求查到员工的所有信息

图解如下:
哈希表(java)_第1张图片
代码如下:

public class HashTableDemo {
    public static void main(String[] args) {
        HashTable hashTable = new HashTable(7);
        Scanner scanner = new Scanner(System.in);
        String key = "";
        while (true){
            System.out.println("add:添加雇员");
            System.out.println("find:查找雇员");
            System.out.println("delete:删除雇员");
            System.out.println("list:遍历雇员");
            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);
                    hashTable.add(emp);
                    break;
                case "find":
                    System.out.println("请输入要查找雇员的id");
                    id = scanner.nextInt();
                    hashTable.findEmpById(id);
                    break;
                case "list":
                    hashTable.list();
                    break;
                case "exit":
                    scanner.close();
                    System.exit(0);
                default:
                    break;
            }
        }
    }
}

//创建hash表
class HashTable{
    private EmpLinkedList[] empLinkedListArray;
    private int size;
    public HashTable(int size){
        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 empId = hashFun(id);
        Emp empById = empLinkedListArray[empId].findEmpById(id);
        if (empById != null){
            System.out.println("在第" + empId + "条链表中找到该员工");
        }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;

    //添加雇员,假定雇员的id是自增长的,即每次添加的雇员都是在链表的最后
    public void add(Emp emp){
        if (head == null){
            head = emp;
            return;
        }

        Emp tempEmp = head;
        while (tempEmp.next != null){
            tempEmp = tempEmp.next;
        }
        tempEmp.next = emp;
    }

    //遍历链表
    public void list(int no){
       if (head == null){
           System.out.println("第" + no + "链表为空!");
           return;
       }
        System.out.print("当前第" + no + "链表的信息为");
        Emp tempEmp = head;
       while (true){
           System.out.print("==>id=" + tempEmp.id + ",name=" + tempEmp.name);
           if (tempEmp.next == null){
               break;
           }
            tempEmp = tempEmp.next;
       }
        System.out.println();
    }

    public Emp findEmpById(int id){
        if (head == null){
            return null;
        }
        Emp tempEmp = head;
        while (true){
            if (tempEmp.id == id){
                break;
            }
            if (tempEmp.next == null){
                tempEmp = null;
                break;
            }
            tempEmp = tempEmp.next;
        }
        return tempEmp;
    }
    

代码中没有实现删除操作

你可能感兴趣的:(java,散列表,数据结构)