摘要:
//二叉树的基本操作之—建立二叉排序树并遍历 #include #include struct Node{ Node *lchild; Node *rchild; int c; }Tree[110];//静态数组 int loc;// 静态数组中被使用的元素个数 Node *create(){//申请未使用的结点 Tree[loc].lchild=Tree[l... 阅读全文
摘要:
//使用stl中的sort排序 定义compare函数 或进行 #include using namespace std; bool cmp(int x,int y){//定义排序规则 return x>y; } int main(){ int n;int buf[100]; while(scanf("%d",&n)!=EOF){ for(int... 阅读全文
摘要:
//冒泡排序 #include int main(){ int n; int buf[100]; while(scanf("%d",&n)!=EOF){ for(int i=0;ibuf[j+1]){ int tmp=buf[j]; buf[j]=buf[j+1]; ... 阅读全文