Name: Anonymous 2016-01-05 0:44
Except than being too lazy to use arrays? The amount of cache misses you are going to get overweights the other benefits.
struct Node {
int val;
int left;
int right;
} nodes[10];