樹和二叉樹的實驗 2

#include<iostream.h> struct bnode { char data; bnode *lchild,*rchild,*parent; };   class btree { bnode *root;                    //指向根結點的頭指針 bnode *creat(bnode *bt);        //被構造函數調用 void release(bnod
相關文章
相關標籤/搜索