comparison baum.h @ 10:0e15841ae111

s/list/stack/g because thats what it is
author meillo@marmaro.de
date Sat, 09 Feb 2008 16:49:29 +0100
parents c020b0d1cfca
children e2048e569891
comparison
equal deleted inserted replaced
9:c020b0d1cfca 10:0e15841ae111
19 struct Node* down; 19 struct Node* down;
20 struct Node* right; 20 struct Node* right;
21 }; 21 };
22 22
23 23
24 struct Listitem { 24 struct Stackitem {
25 struct Node* node; 25 struct Node* node;
26 struct Listitem* next; 26 struct Stackitem* next;
27 }; 27 };