What is your favorite data structure?

Array
Stack
Queue
Linked List
Binary Search Tree
What?
Select gender and age to cast your vote:
Updates
+1 y
//Wow! I thought binary search trees would win!
//Personally, I think this is the most beautiful algorithm ever written
public Node search (Node root, int key) {
if (root==null root. key==key)
return root;
if (root. key < key)
return search (root. right, key);
return search (root. left, key);
}
What is your favorite data structure?
Post Opinion