二叉樹遞歸簡單操作

#include<iostream> using namespace std; typedef char datatype; typedef struct node{     datatype data;     struct node*lchild,*rchild;//左右節點 } bintnode; typedef bintnode *bintree; bintree root;//指向二叉樹
相關文章
相關標籤/搜索