Sort.h
资源名称:paixu.rar [点击查看]
上传用户:myichia
上传日期:2022-07-26
资源大小:1012k
文件大小:1k
源码类别:
数据结构
开发平台:
Visual C++
- #ifndef SORT_H
- #define SORT_H
- typedef int KeyType;
- //顺序表结构
- /*---------------------------------------------------------------------*/
- typedef struct
- {
- KeyType key; //存储的元素类型
- }RedType;
- typedef struct
- {
- RedType *elem; //动态分配元素数目
- int length;
- }SqList;
- //功能函数
- /*---------------------------------------------------------------------*/
- void InitList(SqList &L); //初始化
- void SelectSort(SqList &L); //简单选择排序
- void BubbleSort(SqList &L); //冒泡法排序
- void InsertSort(SqList &L); //直接插入排序
- void ShellSort(SqList &L, int dlta[], int t); //希尔排序
- void QuickSort(SqList &L); //快速排序
- void DispPlay(SqList &L); //显示
- #endif
English
