摘要: //二叉树的基本操作之—建立二叉排序树并遍历 #include #include struct Node{ Node *lchild; Node *rchild; int c; }Tree[110];//静态数组 int loc;// 静态数组中被使用的元素个数 Node *create(){//申请未使用的结点 Tree[loc].lchild=Tree[l... 阅读全文
posted @ 2017-07-02 14:51 Elaine_DWL 阅读(151) 评论(0) 推荐(0) 编辑
摘要: //使用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... 阅读全文
posted @ 2017-07-02 12:32 Elaine_DWL 阅读(161) 评论(0) 推荐(0) 编辑
摘要: //冒泡排序 #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]; ... 阅读全文
posted @ 2017-07-02 12:01 Elaine_DWL 阅读(108) 评论(0) 推荐(0) 编辑