1
1
/*
2
- * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2014, 2021, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -74,20 +74,20 @@ public IntHashTable(int capacity) {
74
74
* @param key The object whose hash code is to be computed.
75
75
* @return zero if the object is null, otherwise the identityHashCode
76
76
*/
77
- public int hash (Object key ) {
77
+ protected int hash (Object key ) {
78
78
return System .identityHashCode (key );
79
79
}
80
80
81
81
/**
82
82
* Find either the index of a key's value, or the index of an available space.
83
83
*
84
- * @param key The key to whose value you want to find.
85
- * @param hash The hash code of this key.
84
+ * @param key The key to whose index you want to find.
86
85
* @return Either the index of the key's value, or an index pointing to
87
86
* unoccupied space.
88
87
*/
89
- public int lookup (Object key , int hash ) {
88
+ protected int lookup (Object key ) {
90
89
Object node ;
90
+ int hash = hash (key );
91
91
int hash1 = hash ^ (hash >>> 15 );
92
92
int hash2 = (hash ^ (hash << 6 )) | 1 ; //ensure coprimeness
93
93
int deleted = -1 ;
@@ -103,24 +103,14 @@ public int lookup(Object key, int hash) {
103
103
}
104
104
105
105
/**
106
- * Lookup a given key's value in the hash table.
107
- *
108
- * @param key The key whose value you want to find.
109
- * @return Either the index of the key's value, or an index pointing to
110
- * unoccupied space.
111
- */
112
- public int lookup (Object key ) {
113
- return lookup (key , hash (key ));
114
- }
115
-
116
- /**
117
- * Return the value stored at the specified index in the table.
106
+ * Return the value to which the specified key is mapped.
118
107
*
119
- * @param index The index to inspect, as returned from {@link #lookup}
120
- * @return A non-negative integer if the index contains a non-null
121
- * value, or -1 if it does .
108
+ * @param key The key to whose value you want to find.
109
+ * @return A non-negative integer if the value is found.
110
+ * Otherwise, it is -1 .
122
111
*/
123
- public int getFromIndex (int index ) {
112
+ public int get (Object key ) {
113
+ int index = lookup (key );
124
114
Object node = objs [index ];
125
115
return node == null || node == DELETED ? -1 : ints [index ];
126
116
}
@@ -130,12 +120,11 @@ public int getFromIndex(int index) {
130
120
*
131
121
* @param key key with which the specified value is to be associated.
132
122
* @param value value to be associated with the specified key.
133
- * @param index the index at which to place this binding, as returned
134
- * from {@link #lookup}.
135
123
* @return previous value associated with specified key, or -1 if there was
136
124
* no mapping for key.
137
125
*/
138
- public int putAtIndex (Object key , int value , int index ) {
126
+ public int put (Object key , int value ) {
127
+ int index = lookup (key );
139
128
Object old = objs [index ];
140
129
if (old == null || old == DELETED ) {
141
130
objs [index ] = key ;
@@ -152,6 +141,13 @@ public int putAtIndex(Object key, int value, int index) {
152
141
}
153
142
}
154
143
144
+ /**
145
+ * Remove the mapping(key and value) of the specified key.
146
+ *
147
+ * @param key the key to whose value you want to remove.
148
+ * @return the removed value associated with the specified key,
149
+ * or -1 if there was no mapping for the specified key.
150
+ */
155
151
public int remove (Object key ) {
156
152
int index = lookup (key );
157
153
Object old = objs [index ];
@@ -169,20 +165,16 @@ public int remove(Object key) {
169
165
protected void rehash () {
170
166
Object [] oldObjsTable = objs ;
171
167
int [] oldIntsTable = ints ;
172
- int oldCapacity = oldObjsTable .length ;
173
- int newCapacity = oldCapacity << 1 ;
174
- Object [] newObjTable = new Object [newCapacity ];
175
- int [] newIntTable = new int [newCapacity ];
176
- int newMask = newCapacity - 1 ;
177
- objs = newObjTable ;
178
- ints = newIntTable ;
179
- mask = newMask ;
168
+ int newCapacity = oldObjsTable .length << 1 ;
169
+ objs = new Object [newCapacity ];
170
+ ints = new int [newCapacity ];
171
+ mask = newCapacity - 1 ;
180
172
num_bindings = 0 ; // this is recomputed below
181
173
Object key ;
182
174
for (int i = oldIntsTable .length ; --i >= 0 ;) {
183
175
key = oldObjsTable [i ];
184
176
if (key != null && key != DELETED )
185
- putAtIndex (key , oldIntsTable [i ], lookup ( key , hash ( key )) );
177
+ put (key , oldIntsTable [i ]);
186
178
}
187
179
}
188
180
0 commit comments