随笔分类 -  《数据结构》

《数据结构Chapter10·内部排序》
摘要:#include<stdio.h>#include<string.h>#include<stdlib.h>#define MAXSIZE 20typedef int Keytype;typedef struct{ Keytype key;// char *otherinfo;}Redtype;typedef struct{ Redtype r[MAXSIZE + 1]; int length;}SqList;//int a, b;#define EQ(a, b) ((a) == (b))#define LT(a, b) ((a) < (b))#defi 阅读全文
posted @ 2012-02-20 09:40 tomctx 阅读(178) 评论(0) 推荐(0)