数据结构堆排序的源代码

时间:2013-06-09 14:02:34
【文件属性】:

文件名称:数据结构堆排序的源代码

文件大小:1KB

文件格式:TXT

更新时间:2013-06-09 14:02:34

堆排序

#include #define MAXNUM 100 #define TRUE 1 #define FALSE 0 typedef int KeyType; typedef int DataType; typedef struct { KeyType key; } RecordNode; typedef struct { int n; RecordNode record[MAXNUM]; } SortObject; #define leftChild(i) (2*(i)+1)


网友评论

  • 很好啊,可以运行·