Yelp interview question

Linked List vs. Binary Search Tree about run time complexity.

Interview Answer

Anonymous

May 18, 2011

linked list O(n) linear run time Binary search tree O(log n) logarithmic run time

2