We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36be328 commit bcc39cbCopy full SHA for bcc39cb
ch13/02_SortedSet_and_NavigableSet.md
@@ -304,9 +304,9 @@
304
305
表 `13-1`。不同 `Set` 实现的比较性能
306
307
- ---| add | contains | next | notes
308
- ---|--- | --- | --- | ---
309
- HashSet |O(1) | O(1) |O(h/n) | h is the table capacity
+ 集合 | add | contains | next | notes
+ ---|--- | --- | --- | ---
+ HashSet |O(1) | O(1) |O(h/n) | h是表格容量
310
LinkedHashSet |O(1) | O(1) O(1) | |
311
CopyOnWriteArraySet |O(n) | O(n) O(1) | |
312
EnumSet |O(1) | O(1) O(1) | |
0 commit comments