Skip to content

Commit bcc39cb

Browse files
authored
Update 02_SortedSet_and_NavigableSet.md
1 parent 36be328 commit bcc39cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: ch13/02_SortedSet_and_NavigableSet.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,9 @@
304304

305305
`13-1`。不同 `Set` 实现的比较性能
306306

307-
---| add | contains | next | notes
308-
---|--- | --- | --- | ---
309-
HashSet |O(1) | O(1) |O(h/n) | h is the table capacity
307+
  集合 | add     | contains   | next     | notes
308+
---|--- | --- | --- | ---
309+
HashSet |O(1) | O(1) |O(h/n) | h是表格容量
310310
LinkedHashSet |O(1) | O(1) O(1) | |
311311
CopyOnWriteArraySet |O(n) | O(n) O(1) | |
312312
EnumSet |O(1) | O(1) O(1) | |

0 commit comments

Comments
 (0)