root/branches/stable_5.0/CONSENSUS_TREE/CT_ntree.hxx

Revision 5390, 443 bytes (checked in by westram, 4 years ago)

- TAB-Ex

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1struct nsons;
2
3typedef struct nt_node {
4    PART         *part;
5    struct nsons *son_list;
6} NT_NODE;
7
8
9typedef struct nsons {
10    NT_NODE *node;
11    nsons   *prev, *next;
12} NSONS;
13
14
15
16NT_NODE *new_ntnode(PART *p);
17void     del_tree(NT_NODE *tree);
18void     ntree_init(void);
19int      ntree_cont(int len);
20void     insert_ntree(PART *part);
21NT_NODE *ntree_get(void);
22void     print_ntindex(NT_NODE *tree);
23void     print_ntree(NT_NODE *tree);
Note: See TracBrowser for help on using the browser.