北郵OJ 130 二叉排序樹

北郵OJ 二叉排序樹 #include <bits/stdc++.h> using namespace std; typedef struct node{ int data; struct node* lchild; struct node* rchild; }Node; Node* insert(Node* node,int x){ if(node==NULL){ node=(Nod
相關文章
相關標籤/搜索