typedef struct node_t{
 struct node_t *child;
 struct node_t *next;
 int data;
}NODE;