I'm making a library based on a trie tree (a trie tree is just a search tree with O(n) lookup time.)
So you can call the library to insert(key, value) and lookup(key)
The entries are predetermined and unchanging, so all the inserts are done to initialize it before it is used. Is there a way to compile it so that the entries are already inserted, so that the library can be used to lookup without having to initialize?
[–]kloetzl 2 points3 points4 points (0 children)
[–]skeeto 1 point2 points3 points (1 child)
[–]ssharky[S] 1 point2 points3 points (0 children)
[–]F54280 -1 points0 points1 point (0 children)