data-structures icon indicating copy to clipboard operation
data-structures copied to clipboard

Go datastructures.

Results 4 data-structures issues
Sort by recently updated
recently updated
newest added

This PR adds support for float types.

Have added a useful link about the ArrayList in java from the scaler topics

https://github.com/timtadh/data-structures/blob/master/trie/tst.go#L173 This line panics if the prefix being searched for is longer than the capacity of the key being checked, e.g. this panics: ```go tst := trie.New() tst.Put([]byte("abc"), nil) _,...

Hi, I used the hashtable from your library. When I use the hashtable and often got hit miss, the library generates a lot of stack. It turns out to be...