package main import ( "fmt" "math/rand" "sync" ) type SkipTable struct { maxHeight int head *Node comparator Comparator mu sync.RWMutex } type Node st Read More
posted @ 2020-02-26 16:58 梦醒心晴 Views(353) Comments(0) Diggs(0) Edit