You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bug1: add duplicated key into the trie will incr the size but the key was replaced.
bug2: the meta was not store in the node of last character of key but the new child with val=0x00
`
trie.Add("apple\x00p1", "1") // key contains 0
trie.Add("apple\x00p2", "1") // key contains 0
trie.Add("apple", "1") // after apple inserted, the above 2 keys are dispear.
`
The text was updated successfully, but these errors were encountered:
bug1: add duplicated key into the trie will incr the size but the key was replaced.
bug2: the meta was not store in the node of last character of key but the new child with val=0x00
`
trie.Add("apple\x00p1", "1") // key contains 0
trie.Add("apple\x00p2", "1") // key contains 0
trie.Add("apple", "1") // after apple inserted, the above 2 keys are dispear.
`
The text was updated successfully, but these errors were encountered: