28 lines
702 B
C
28 lines
702 B
C
#ifndef TREE_EXPAND_H
|
|
#define TREE_EXPAND_H
|
|
|
|
#include "tree.h"
|
|
|
|
TNode *tnodeWithInt(int);
|
|
TNode *tnodeWithDouble(double);
|
|
TNode *tnodeWithString(char *);
|
|
TNode *tnodeWithPointer(void *);
|
|
|
|
int getValueByIntForTree(TNode *);
|
|
double getValueByDoubleForTree(TNode *);
|
|
char *getValueByStringForTree(TNode *);
|
|
void *getValueByPointerForTree(TNode *);
|
|
|
|
int printTree(Tree *p_tree);
|
|
int printTNodeWithHome(TNode *p_tnode, int priority);
|
|
int printTNodeWithFamily(TNode *p_tnode, int priority);
|
|
int printTNode(TNode *p_tnode, int priority);
|
|
|
|
unsigned long long calTreeMemory(Tree *);
|
|
int _doCalTreeMemory(TNode *p_tnode, unsigned long long height);
|
|
|
|
List *treeToList(Tree *p_tree);
|
|
|
|
|
|
#endif
|