当前位置:网站首页>选择法排序与冒泡法排序【C语言】
选择法排序与冒泡法排序【C语言】
2022-07-06 09:16:00 【薇远镖局】
1、选择法排序
/*
选择法排序:由小到大
工作原理如下:首先在未排序序列中找到最小(大)元素,存放到排序序列的起始位置,
然后,再从剩余未排序元素中继续寻找最小(大)元素,然后放到已排
序序列的末尾。以此类推,直到所有元素均排序完毕。
*/
void sel_sort_s2b(int arr[], int n)
{
int min;
int temp;
for (int i = 0; i<(n - 1); i++)
{
min = i;
for (int j = i + 1; j<n; j++)
{
if (arr[min] > arr[j])
{
min = j; //将数组中最小值的下标记录下来
}
}
if (min != i) //min等于i的话不需要交换
{
temp = arr[i];
arr[i] = arr[min];
arr[min] = temp;
}
}
}
/*
选择法排序:由大到小
工作原理如下:首先在未排序序列中找到最大(小)元素,存放到排序序列的起始位置,
然后,再从剩余未排序元素中继续寻找最大(小)元素,然后放到已排
序序列的末尾。以此类推,直到所有元素均排序完毕。
*/
void sel_sort_b2s(int a[], int len)
{
#define SWAP(X,Y) X=X+Y;Y=X-Y;X=X-Y
int max;
for (int i = 0; i < len - 1; i++)
{
max = i;
for (int j = i + 1; j < len; j++)
{
if (a[j] > a[max])
{
max = j;
}
}
if (max != i)
{
SWAP(a[i], a[max]);
}
}
}
2、冒泡法排序
/*
冒泡法排序:由小到大
工作原理如下:它重复地走访过要排序的数列,一次比较两个元素,如果他们的顺序(如从大到小、首字母从A到Z)错误就把他们交换过来。
*/
void bubble_sort_s2b(int arr[], int len)
{
#define SWAP(X,Y) X=X+Y;Y=X-Y;X=X-Y
for (int i = 0; i<(len - 1); i++)
{
for (int j = 0; j<(len - i - 1); j++)
{
if (arr[j] > arr[j + 1])
{
SWAP(arr[j], arr[j + 1]);
}
}
}
}
/*
冒泡法排序:由大到小
工作原理如下:它重复地走访过要排序的数列,一次比较两个元素,如果他们的顺序(如从大到小、首字母从A到Z)错误就把他们交换过来。
*/
void bubble_sort_b2s(int arr[], int len)
{
#define SWAP(X,Y) X=X+Y;Y=X-Y;X=X-Y
for (int i = 0; i<(len - 1); i++)
{
for (int j = 0; j<(len - i - 1); j++)
{
if (arr[j] < arr[j + 1])
{
SWAP(arr[j], arr[j + 1]);
}
}
}
}
边栏推荐
猜你喜欢
vs2019 第一个MFC应用程序
Redis interview questions
Composition des mots (sous - total)
E-commerce data analysis -- User Behavior Analysis
Word排版(小計)
MySQL realizes read-write separation
Machine learning -- linear regression (sklearn)
R & D thinking 01 ----- classic of embedded intelligent product development process
Wangeditor rich text reference and table usage
电商数据分析--用户行为分析
随机推荐
[Bluebridge cup 2020 preliminary] horizontal segmentation
XML文件详解:XML是什么、XML配置文件、XML数据文件、XML文件解析教程
Come and walk into the JVM
【yarn】Yarn container 日志清理
Vs2019 use wizard to generate an MFC Application
[template] KMP string matching
Using LinkedHashMap to realize the caching of an LRU algorithm
L2-007 family real estate (25 points)
Those commonly used tool classes and methods in hutool
Pytorch实现简单线性回归Demo
MySQL与c语言连接(vs2019版)
Stage 4 MySQL database
Reading BMP file with C language
使用lambda在循环中传参时,参数总为同一个值
L2-004 is this a binary search tree? (25 points)
encoderMapReduce 随手记
2019腾讯暑期实习生正式笔试
Encodermappreduce notes
sklearn之feature_extraction.text.CountVectorizer / TfidVectorizer
Integration test practice (1) theoretical basis