其他分享
首页 > 其他分享> > 705. Design HashSet

705. Design HashSet

作者:互联网

Design a HashSet without using any built-in hash table libraries.

To be specific, your design should include these functions:


Example:

MyHashSet hashSet = new MyHashSet();
hashSet.add(1);         
hashSet.add(2);         
hashSet.contains(1);    // returns true
hashSet.contains(3);    // returns false (not found)
hashSet.add(2);          
hashSet.contains(2);    // returns true
hashSet.remove(2);          
hashSet.contains(2);    // returns false (already removed)


Note:

class MyHashSet {
    
    List<Integer> list;
    /** Initialize your data structure here. */
    public MyHashSet() {
        list = new ArrayList();
    }
    
    public void add(int key) {
        if(list.indexOf(key) < 0) list.add((Integer) key);
    }
    
    public void remove(int key) {
        if(list.indexOf(key) >= 0) list.remove((Integer) key);
    }
    
    /** Returns true if this set contains the specified element */
    public boolean contains(int key) {
        return list.indexOf((Integer) key) >= 0;
    }
}

1. 相当于bruteforce了

class MyHashSet {
    boolean[] arr = new boolean[100];// start with 100 elements for fast initialization
    /** Initialize your data structure here. */
    public MyHashSet() {
        
    }
    
    public void add(int key) {
        if(key>=arr.length) // if array is too small to accomodate key, extend it.
            extend(key);
        arr[key]=true;
    }
    
    public void remove(int key) {
        if(key>=arr.length) // if array is too small to accomodate key, extend it.
            return;
        arr[key]=false;
    }
    
    /** Returns true if this set contains the specified element */
    public boolean contains(int key) {
        if(key>=arr.length) // key cannot be in array if array's length < key
            return false;
        return arr[key]==true;
    }
    
    public void extend(int key){
        arr= Arrays.copyOf(arr, key+1);  // extend array to one more item than necessary, we need "key" items. 
                                         // we give "key+1" items to reduce collisions.
    }
}

2.相当于里面有了检查的阈值

标签:arr,contains,hashSet,705,HashSet,add,Design,key,public
来源: https://www.cnblogs.com/wentiliangkaihua/p/13424247.html