当前位置:网站首页>c语言——冒泡排序
c语言——冒泡排序
2022-07-06 05:44:00 【bit..】
冒泡排序(Bubble Sort)也是一种简单直观的排序算法。它重复地走访过要排序的数列,一次比较两个元素,如果他们的顺序错误就把他们交换过来。走访数列的工作是重复地进行直到没有再需要交换,也就是说该数列已经排序完成。这个算法的名字由来是因为越小的元素会经由交换慢慢"浮"到数列的顶端。
作为最简单的排序算法之一,冒泡排序给我的感觉就像 Abandon 在单词书里出现的感觉一样,每次都在第一页第一位,所以最熟悉。冒泡排序还有一种优化算法,就是立一个 flag,当在一趟序列遍历中元素没有发生交换,则证明该序列已经有序。但这种改进对于提升性能来说并没有什么太大作用。
1. 算法步骤
比较相邻的元素。如果第一个比第二个大,就交换他们两个。
对每一对相邻元素作同样的工作,从开始第一对到结尾的最后一对。这步做完后,最后的元素会是最大的数。
针对所有的元素重复以上的步骤,除了最后一个。
持续每次对越来越少的元素重复上面的步骤,直到没有任何一对数字需要比较。
2. 动图演示
3. 什么时候最快
当输入的数据已经是正序时。
4. 什么时候最慢
当输入的数据是反序时(写一个 for 循环反序输出数据不就行了)
5. 代码实现(由大到小)
#include<stdio.h>
void Bubble_sort(int arr[], int size)
{
int i, j, tmp;
for (i = 0; i <= size - 1; i++)
{
for (j = 0; j <= size - 1 - i; j++)
{
if (arr[j] < arr[j + 1]) //如果要由小到大排列只需将'<'改成'>'即可实现
{
tmp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = tmp;
}
}
}
}
int main()
{
int arr[5], i;
printf("请输入五个数:");
for (i = 0; i < 5; i++)
{
scanf_s("%d", &arr[i]);
}
printf("排列前的数组:");
for (i = 0; i < 5; i++)
{
printf("%d", arr[i]);
}
printf("\n");
printf("排序后的数组:");
Bubble_sort(arr, 5);
for (i = 0; i < 5; i++)
{
printf("%d", arr[i]);
}
return 0;
}
边栏推荐
- Selective parameters in MATLAB functions
- AUTOSAR从入门到精通番外篇(十)-嵌入式S19文件解析
- 05. Security of blog project
- 02. Develop data storage of blog project
- HAC cluster modifying administrator user password
- [SQL Server Express Way] - authentification et création et gestion de comptes utilisateurs
- 初识数据库
- Text classification still stays at Bert? The dual contrast learning framework is too strong
- [imgui] unity MenuItem shortcut key
- [detailed explanation of Huawei machine test] check whether there is a digital combination that meets the conditions
猜你喜欢
[cloud native] 3.1 kubernetes platform installation kubespher
B站刘二大人-线性回归 Pytorch
Station B, Master Liu Er - dataset and data loading
01. 开发博客项目之项目介绍
PDK工藝庫安裝-CSMC
- [email protected]树莓派"/>
[email protected]树莓派
Migrate Infones to stm32
华为路由器如何配置静态路由
Summary of deep learning tuning tricks
How can large websites choose better virtual machine service providers?
随机推荐
Winter 2021 pat class B problem solution (C language)
[JVM] [Chapter 17] [garbage collector]
毕业设计游戏商城
Station B Liu Erden linear regression pytoch
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
AUTOSAR from getting started to becoming proficient (10) - embedded S19 file analysis
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
嵌入式面试题(四、常见算法)
CoDeSys note 2: set coil and reset coil
B站刘二大人-多元逻辑回归 Lecture 7
类和对象(一)this指针详解
自建DNS服务器,客户端打开网页慢,解决办法
[experience] when ultralso makes a startup disk, there is an error: the disk / image capacity is too small
Sword finger offer II 039 Maximum rectangular area of histogram
26file filter anonymous inner class and lambda optimization
js Array 列表 实战使用总结
华为路由器如何配置静态路由
[detailed explanation of Huawei machine test] check whether there is a digital combination that meets the conditions
04. Project blog log
04. 项目博客之日志