Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 220 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 220 Bytes

SkipList

Example

  sl := NewSkipList[int, string]()
  sl.Insert(10, "test1")
  sl.Insert(30, "test1")
  sl.Insert(20, "test2")
  sl.Insert(40, "test2")

  v, exist := sl.Search(40)
  
  sl.Delete(40)