baum

annotate baum.h @ 3:15d7d6b9766f

added input; added nextNode, lastNode, insertLast
author meillo@marmaro.de
date Thu, 07 Feb 2008 16:15:07 +0100
parents 557fa4df2bcd
children c020b0d1cfca
rev   line source
meillo@2 1
meillo@2 2 void logit(char* text);
meillo@2 3
meillo@3 4 struct Node* newNode(char* name, unsigned char value);
meillo@3 5 void setValue(struct Node* node, unsigned char value);
meillo@3 6 void delete(struct Node* node);
meillo@3 7 void printNode(struct Node* node);
meillo@3 8 void printTree(struct Node* root);
meillo@3 9 void traverse(struct Node* root);
meillo@3 10
meillo@3 11 struct Node* nextNode(struct Node* node);
meillo@3 12 struct Node* lastNode(struct Node* node);
meillo@3 13 void insertLast(struct Node* node, struct Node* insert);
meillo@2 14
meillo@2 15
meillo@1 16 struct Node {
meillo@1 17 char* name;
meillo@3 18 unsigned char value;
meillo@1 19 struct Node* down;
meillo@1 20 struct Node* right;
meillo@1 21 };
meillo@1 22
meillo@1 23