In development, it is often necessary to arrange a set of data in an orderly manner, so it is absolutely necessary to master several or even more sorting algorithms.
This article introduces one of the simpler sorting algorithms. An algorithm: Bubble sort
First try to use the simplest idea to implement sorting, so as to compare and learn bubble sort
Problem: There is an array with a size of 10 elements (int str[10]) in the array The data is unordered. Now we are required to program this unordered array into an array sorted from small to large (starting from subscript 0)
Idea: According to the requirements of the question, there is no doubt that the correct result should be like this: 1 2 3 4 5 6 7 8 9 10 To do this, the simplest and most direct way to think of is to compare and exchange.
First, put the smallest number among the 10 numbers at the position with subscript 0 (str[0])
By combining the number with subscript 0 (str[0]) and the remaining Compare and exchange the remaining 9 numbers (place the smaller number at the position with the subscript 0), and you can get the one with the smallest 10 numbers
After the 10 smallest numbers are determined, the next step is to find the remaining ones. The next 9 with the smallest number.
Since a minimum number has been determined, don’t move str[0], start directly from str[1], compare and exchange with the remaining 8 numbers, find the smallest one among the 9 numbers and put it in At the position where the subscript is 1 (str[1])
Continue to follow this idea to turn these ten numbers into an ordered (from small to large) array
Code:
#include <stdio.h> void swap(int *a, int *b); //交换两个数 int main() { int str[10]; int i, j; //初始化数组为10 9 8 7 6 5 4 3 2 1 for (i = 0; i < 10; i++) { str[i] = 10 - i; } //排序,从a[0]开始排,从小到大 for (i = 0; i < 10; i++) { for (j = i + 1; j < 10; j++) { if (str[i] > str[j]) { swap(&str[i], &str[j]); } } } //将十个数输出 for (i = 0; i < 10; i++) printf("%d\n", str[i]); return 0; } void swap(int *a, int *b) { int c; c = *a; *a = *b; *b = c; }
This method is relatively easy Thoughts of how to implement it. But there is a shortcoming: the smaller number originally located in the front is exchanged to the back
Demonstration:
Start: 9 4 5 6 8 3 2 7 10 1 (the subscripts are 0~9 from left to right) Follow the above procedure for comparison and exchange
The first time: 4 9 5 6 8 3 2 7 10 1
The second time: 4 9 5 6 8 3 2 7 10 1
. . . : (No exchange)
The fifth time: 3 9 5 6 8 4 2 7 10 1
The sixth time: 2 9 5 6 8 3 4 7 10 1
. . . : (No exchange)
The tenth time: 1 9 5 6 8 3 4 7 10 2
It can be seen that the original smaller number is in the front, and after a round of exchange, it is placed in the back
So How to solve this shortcoming? You can use bubble sort
What is bubble sort?
You can understand it this way: (sorted from small to large) there are 10 bubbles of different sizes, and the smaller bubbles are gradually raised from bottom to top, so that after one traversal, the smallest bubble will be raised to the top ( The subscript is 0), and then rise in this way from bottom to top, and cycle until ten bubbles are in order.
In bubble sorting, the most important idea is to compare the two, and promote the one with the smaller amount of the two.
The worst-case time complexity of bubble sorting is O(n²)
Code:
#include <stdio.h> void swap(int *a, int *b); int main() { int array[10] = {15, 225, 34, 42, 52, 6, 7856, 865, 954, 10}; int i, j; for (i = 0; i < 10; i++) { //每一次由底至上地上升 for (j = 9; j > i; j--) { if (array[j] < array[j-1]) { swap(&array[j], &array[j-1]); } } } for (i = 0; i < 10; i++) { printf("%d\n", array[i]); } return 0; } void swap(int *a, int *b) { int temp; temp = *a; *a = *b; *b = temp; }
risk The bubble sorting algorithm will only gradually push the smaller ones up, and will not cause the shortcomings mentioned earlier in the article, so it will not be demonstrated here.
For more articles related to getting started with sorting algorithms: bubble sort, please pay attention to the PHP Chinese website!

如何实现C#中的冒泡排序算法冒泡排序是一种简单但有效的排序算法,它通过多次比较相邻的元素并交换位置来排列一个数组。在本文中,我们将介绍如何使用C#语言实现冒泡排序算法,并提供具体的代码示例。首先,让我们了解一下冒泡排序的基本原理。算法从数组的第一个元素开始,与下一个元素进行比较。如果当前元素比下一个元素大,则交换它们的位置;如果当前元素比下一个元素小,则保持

如何编写自定义PHP数组排序算法?冒泡排序:通过比较和交换相邻元素来排序数组。选择排序:每次选择最小或最大元素并将其与当前位置交换。插入排序:逐个插入元素到有序部分。

C++函数性能优化算法选择:选择高效算法(如快速排序、二分查找)。优化技巧:内联小型函数、优化缓存、避免深拷贝、循环展开。实战案例:查找数组最大元素位置时,优化后采用二分查找和循环展开,大幅提升性能。

冒泡事件是指在Web开发中,当一个元素上触发了某个事件后,该事件将会向上层元素传播,直到达到文档根元素。这种传播方式就像气泡从底部逐渐冒上来一样,因此被称为冒泡事件。在实际开发中,了解和理解冒泡事件的工作原理对于正确处理事件十分重要。下面将通过具体的代码示例来详细介绍冒泡事件的概念和使用方法。首先,我们创建一个简单的HTML页面,其中包含一个父级元素和三个子

Go语言是一种越来越流行的编程语言,它被设计成易于编写、易于阅读和易于维护的语言,同时也支持高级编程概念。时间复杂度和空间复杂度是算法和数据结构分析中重要的概念,它们衡量着一个程序的执行效率和占用内存大小。在本文中,我们将重点分析Go语言中的时间复杂度和空间复杂度。时间复杂度时间复杂度是指算法执行时间与问题规模之间的关系。通常用大O表示法来表示时间

Python、Java和C++:哪个编程语言更值得学习?作为计算机科学领域中最常见的编程语言之一,Python、Java和C++各自具有独特的特点和优势。选择学习哪种编程语言往往取决于个人的兴趣、职业需求和项目要求。在选择编程语言时,比较它们的特性和适用场景是非常重要的。接下来将分别探讨这三种编程语言的特点,并给出相应的代码示例。Python:Python是

PHP算法:如何使用冒泡排序提高数组排序效率?冒泡排序是一种简单但效率较低的排序算法,但我们可以通过一些优化策略提高冒泡排序的效率。本文将介绍如何使用PHP中的冒泡排序算法优化数组的排序过程,并提供具体的代码示例。冒泡排序的基本原理是,每次从数组的第一个元素开始,依次比较相邻两个元素的大小,如果前一个元素大于后一个元素,则交换它们的位置。这样一轮比较下来,最


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
