二叉樹遞歸遍歷

1 #include<stdio.h> 2 #include<stdlib.h> 3 typedef struct TNode *position; 4 typedef position BinTree;//二叉樹類型 5 struct TNode{//樹結點定義 6 char data;//指向數據 7 BinTree Left; 8 BinTree
相關文章
相關標籤/搜索