排序算法
摘要:九种排序算法:1.插入排序View Code #include <stdio.h>#include <string.h>#include <stdlib.h>#include <math.h>const int MAXSIZE = 10000; typedef int KeyType;typedef int DataType;typedef struct{ KeyType key; /*记录的关键字字段*/ DataType info; /*记录的其它字段*/}RecordNode;typedef struct{ RecordNode r[MAX
阅读全文
posted @
2013-04-06 15:55
luckyboy1991
阅读(163)
推荐(0)