Mercurial > baum
comparison baum.c @ 54:6e46b106c334
updated examples to "create" instead of "input"
author | meillo@marmaro.de |
---|---|
date | Sun, 02 Mar 2008 16:43:07 +0100 |
parents | 036779d5da75 |
children | 6279e5b14d9e |
comparison
equal
deleted
inserted
replaced
53:036779d5da75 | 54:6e46b106c334 |
---|---|
11 #include <stdlib.h> | 11 #include <stdlib.h> |
12 #include <string.h> | 12 #include <string.h> |
13 | 13 |
14 #include "baum.h" | 14 #include "baum.h" |
15 | 15 |
16 #define VERSION "0.3" | 16 #define VERSION "0.4" |
17 | 17 |
18 | 18 |
19 void printNode(struct Node* node, int level); | 19 void printNode(struct Node* node, int level); |
20 void printTree(struct Node* root, int level); | 20 void printTree(struct Node* root, int level); |
21 struct Node* lastNode(struct Node* node); | 21 struct Node* lastNode(struct Node* node); |