@@ -84,6 +84,8 @@ class MyHashSet:
84
84
85
85
<!-- 这里可写当前语言的特殊实现逻辑 -->
86
86
87
+ - 可以一次性开辟一个大的数组,存放所有元素。
88
+
87
89
``` java
88
90
class MyHashSet {
89
91
@@ -117,6 +119,64 @@ class MyHashSet {
117
119
*/
118
120
```
119
121
122
+ - 也可以开辟一个大小为 ` SIZE ` 的数组,数组的每个位置是一个链表。
123
+
124
+ ``` java
125
+ class MyHashSet {
126
+
127
+ private static final int SIZE = 1000 ;
128
+ private LinkedList [] data;
129
+
130
+ /* * Initialize your data structure here. */
131
+ public MyHashSet () {
132
+ data = new LinkedList [SIZE ];
133
+ Arrays . fill(data, new LinkedList<Integer > ());
134
+ }
135
+
136
+ public void add (int key ) {
137
+ int index = hash(key);
138
+ Iterator<Integer > iterator = data[index]. iterator();
139
+ while (iterator. hasNext()) {
140
+ Integer e = iterator. next();
141
+ if (e == key) return ;
142
+ }
143
+ data[index]. addFirst(key);
144
+ }
145
+
146
+ public void remove (int key ) {
147
+ int index = hash(key);
148
+ ListIterator<Integer > iterator = data[index]. listIterator();
149
+ while (iterator. hasNext()) {
150
+ Integer e = iterator. next();
151
+ if (e == key) iterator. remove();
152
+ }
153
+ }
154
+
155
+ /* * Returns true if this set contains the specified element */
156
+ public boolean contains (int key ) {
157
+ int index = hash(key);
158
+ Iterator<Integer > iterator = data[index]. iterator();
159
+ while (iterator. hasNext()) {
160
+ Integer e = iterator. next();
161
+ if (e == key) return true ;
162
+ }
163
+ return false ;
164
+ }
165
+
166
+ private int hash (int key ) {
167
+ return key % SIZE ;
168
+ }
169
+ }
170
+
171
+ /**
172
+ * Your MyHashSet object will be instantiated and called as such:
173
+ * MyHashSet obj = new MyHashSet();
174
+ * obj.add(key);
175
+ * obj.remove(key);
176
+ * boolean param_3 = obj.contains(key);
177
+ */
178
+ ```
179
+
120
180
### ** ...**
121
181
122
182
```
0 commit comments