Skip to content

Commit bae1076

Browse files
Update README.md
1 parent f35ebfa commit bae1076

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,28 @@ Tree Set: It extends NavigableSet to implement a Tree Set.
9696
graph TD;
9797

9898
Set-->HashSet;
99-
Set-->SortedSet;
99+
Set-->TreeSet;
100100

101101

102102
```
103103

104+
<table>
105+
<tr>
106+
<th>Interface</th>
107+
<th>Hash Table</th>
108+
<th>Resizable Array</th>
109+
<th>Balanced Tree</th>
110+
<th>Linked List</th>
111+
</tr>
112+
<tr>
113+
<td >Set</td>
114+
<td >HashSet</td>
115+
<td ></td>
116+
<td >TreeSet</td>
117+
<td ></td>
118+
</tr>
119+
</table>
120+
104121

105122
</h3>
106123
</ul>

0 commit comments

Comments
 (0)