Yelp Interview Question

Whether to use a list or linked list to implement a search tree

Interview Answer

Anonymous

May 18, 2011

list (or array) because you are able to use random access, rather than having to traverse a linked list.