遞歸建立二叉樹並且遞歸遍歷它

#include <iostream> #include<bits/stdc++.h> using namespace std; typedef struct node{ int data; struct node *lchild,*rchild; }treenode; int cretree(treenode* &root){ int x; cin>>x;     if(x==0) root=N
相關文章
相關標籤/搜索