3341 数据结构实验之二叉树二:遍历二叉树

数据结构实验之二叉树二:遍历二叉树php #include<stdio.h> #include<string.h> #include<stdlib.h> char a[100]; int l1; struct node //二叉树的定义 { int data; struct node *lchild,*rchild; }; struct node *creat() //创建二叉树 { struc
相关文章
相关标签/搜索