求二叉樹中以x爲值的根結點的子樹的深度

#include <iostream> #include <cstdio> using namespace std; typedef struct BTNode { int data; BTNode *lchild, *rchild; }BTNode,*BTree; //返回根爲T的樹深度 int get_Depth(BTree T) { int m,n; if(
相關文章
相關標籤/搜索