This Continuation
Is the binary tree list implementation scalable?
What could be the advantages or disadvantages of implementing a tree using a linear array (stl vector) or stl deque
and not a binary tree with separate nodes having left and right pointers?
assumptions: the tree will be precomputed and will not be modified after its creation and will be used only for search.
user494461
source
share