2018-06-13 08:04:51 +00:00
|
|
|
#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);
|
2018-07-23 05:47:31 +00:00
|
|
|
|
|
|
|
unsigned long long calTreeMemory(Tree *);
|
|
|
|
int _doCalTreeMemory(TNode *p_tnode, unsigned long long height);
|
2018-07-25 14:10:09 +00:00
|
|
|
|
|
|
|
List *treeToList(Tree *p_tree);
|
|
|
|
|
2018-06-13 08:04:51 +00:00
|
|
|
|
|
|
|
#endif
|