北郵OJ 133 二叉樹的層數

北郵OJ 二叉樹的層數 #include<bits/stdc++.h> using namespace std; typedef struct node{ int lchild,rchild,deep; }Node; int max(int x,int y){ return (x>y)?x:y; } int main(){ int t,i=1; Node node[101]; scanf
相關文章
相關標籤/搜索