數據結構——二叉樹的基本操作(不包括還原)

小編沒有寫主函數,你們需要用什麼函數只需要自己寫一個主函數調用一下就可以了       #include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct node //二叉樹定義 {     char data;     struct node *lchild , *rchild; }tree , *stree; v
相關文章
相關標籤/搜索