TOP
摘要: #include #include #define LEN sizeof(struct Student) struct Student //结构体声明{ long num; int score; struct Student* next; }; int n; s... 阅读全文
posted @ 2014-11-19 08:46 同勉共进 阅读(10785) 评论(0) 推荐(1)
摘要: /* 说明: 代码参考过网上代码,但分析为个人原创,本贴重在说明快速排序算法的思想和运行过程。 */ 代码部分: #include<stdio.h> #include<stdlib.h> void quickSort(int* arr,int startPos, int endPos) { int 阅读全文
posted @ 2014-11-17 23:45 同勉共进 阅读(12094) 评论(0) 推荐(1)