C语言数据结构课程设计

日期:2008-12-18 03:49:47 人气:1

C语言数据结构课程设计

举手之劳,帮你弄了。 下面的是树的各种操作的一个完整的c程序,在win-tc和Dev-c++下运行通过。 #include #include struct node { int value; struct node* left; struct node* right; }; typedef struct node NODE; typedef struct node* PNODE; void new_node (PNOD
    A+
热门评论