2019.4.21

    技术2022-07-10  115

    2019.4.21

    public Set<V> getAll(K key){ Set<V> ret = new HashSet<>(); int startIndex = hash(key.hashCode()); while(table[startIndex] != null){ ret.add(table[startIndex].getValue()); startIndex = (startIndex + 1) % capacity; } return ret; }

    Processed: 0.011, SQL: 9