skiplist icon indicating copy to clipboard operation
skiplist copied to clipboard

A Go library for an efficient implementation of a skip list: https://godoc.org/github.com/MauriceGit/skiplist

Results 5 skiplist issues
Sort by recently updated
recently updated
newest added

I've been trying to find what the behaviour of different methods is with respect to duplicate keys, but can't find anything official or obvious. Some limited testing has shown that...

I've added the serialize and deserialize using json. #7

```shell go test . -bench=. -run=NOTEST -v -cpuprofile=cpu.out -benchtime=1000000x goos: darwin goarch: amd64 pkg: github.com/skiplist cpu: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz BenchmarkSkipListInsert BenchmarkSkipListInsert-12 1000000 224.7 ns/op BenchmarkSkipListFind BenchmarkSkipListFind-12 1000000...

hi, i saw the lastest bug you submitted, but i believe that bug still exists, when i test a mutil insert. some of the nodes disappear. I'm trying to solve...

A serialize and deserialize method would be useful in case of save skiplist on file or in a key-value DB