This is a follow up to Is a list implementation of binary tree scalable?
What can be the advantages or disadvantages of tree implementation done using linear array(stl vector) or stl deque
rather than a binary tree with individual nodes having left and right pointers?
assumptions: the tree will be precomputed and will not be modified once built, and will only be used for searching.