Skip to content

Ysoding/skiplist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages