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
相關文章
相關標籤/搜索