Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Any point in using linked lists?

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.

Name: Cudder !cXCudderUE 2016-01-05 4:30

Infrequent appending/removing, and/or random insertion with large objects (that didn't come out right...)

>>4
Yes.
struct Node {
int val;
int left;
int right;
} nodes[10];

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List