冒泡,直接插入,简单选择排序源程序
#include"stdio.h" #include"malloc.h" #define MAXSIZE 100 typedef int KeyType; /*关键码类型定义*/ typedef struct node { KeyType key; /*关键码定义*/ }ElemType; /*数据元素类型*/ typedef struct { ElemType elem[MAXSIZE+1]; /*elem[0]在下面排序中作为监测点*/ int length; }S_TBL; /*顺序存储的数据元素序列*/ void Print(S_TBL p); S_TBL *Creat() /*创建链表,申请存放数据的空间并给p*/ { S_TBL *p; /*顺序存储的数据元素序列*/ void Print(S_TBL p); S_TBL *Creat() /*创建链表,申请存放数据的空间并给p*/ { S_TBL *p;
用户评论
挺好的 还能用