Skip to content

Commit 547a635

Browse files
committed
Ordered Set
1 parent 3ba8a3b commit 547a635

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OrderedSet/README.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
An ordered set is a common data structure that supports O(log N) lookups, insertions and removals. Ordered set is also sometimes used as an alternative to a hash map, for example in STL’s map.
44

5-
The implementation is quite basic:
5+
## The code
66

77
```kotlin
88
class OrderedSet<T:Comparable<T>>(list:MutableList<T>){

0 commit comments

Comments
 (0)