Go-Algorithm
Go-Algorithm copied to clipboard
Implementations of data structures & algorithms written in Golang.
Results
2
Go-Algorithm issues
Sort by
recently updated
recently updated
newest added
作者你好,目前我初学go语言,看到你的项目hashMap删除方法好像有问题,你的代码: ``` func (hashMap *LinkedHashMap) Remove(key int) { hashMap.checkTable() hash := getHashValue(key) e := hashMap.table[hash] if e != nil { for e.next != nil { if e.key == key {...