Add Trie
Opened this issue · 4 comments
conan1412yang99 commented
Outlines
- Trie basics (insert, delete, find)
- Binary on trie (01trie)
- Persistent trie
- Sample code (basic / binary / persistent)
- Problem set
- dictionary problem
- maximum xor sum path on tree
- maximum xor sub-array
- given int x and a set S, maximize x ^ y for y in S
- given int x and a array A, maximize x ^ y for y in A[L: R]
References
harry900831 commented
According to your outline and references, the content seems not enough. You'll have to add more stuff, maybe more problem or the variation of trie. Moreover, the references is not enough either.
conan1412yang99 commented
I think I could add some content covering persistent trie and more "interesting" problems.
For the persistent trie, I found this reference:
https://iq.opengenus.org/persistent-trie/
harry900831 commented
It would be great to see more interesting problems :)
You may directly modify the outline above after you come up with new outline.
conan1412yang99 commented
@harry900831 I updated the outline and references. I think the content is hard enough for me now .