structure in C

 

 

/* binary tree node definition */
struct tnode
{
  char *word;        /* text at this node */
  int count;        /* occurrence of this text */
  struct tnode *left;   /* pointer to next node in the tree */
  struct tnode *right;  /* pointer to right child */ }

posted on 2012-12-03 11:34  operation_master  阅读(124)  评论(0编辑  收藏  举报

导航