- DSA 使用 C 教程
- 使用 C 的 DSA - 主页
- 使用 C 语言的 DSA - 概述
- 使用 C 语言的 DSA - 环境
- 使用 C 算法的 DSA
- 使用 C 的 DSA - 概念
- 使用 C 数组的 DSA
- 使用 C 链表的 DSA
- 使用 C 的 DSA - 双向链表
- 使用 C 的 DSA - 循环链表
- 使用 C 的 DSA - 堆栈内存溢出
- 使用 C 的 DSA - 解析表达式
- 使用 C 队列的 DSA
- 使用 C 的 DSA - 优先级队列
- 使用 C 树的 DSA
- 使用 C 哈希表的 DSA
- 使用 C 堆的 DSA
- 使用 C - Graph 的 DSA
- 使用 C 搜索技术的 DSA
- 使用 C 排序技术的 DSA
- 使用 C 的 DSA - 递归
- 使用 C 语言的 DSA 有用资源
- 使用 C 的 DSA - 快速指南
- 使用 C 的 DSA - 有用资源
- 使用 C 的 DSA - 讨论
使用 C 的 DSA - 冒泡排序
概述
冒泡排序是一种简单的排序算法。该排序算法是基于比较的算法,其中比较每对相邻元素,如果元素不按顺序,则交换元素。该算法不适合大型数据集,因为其平均和最坏情况复杂度为 O(n 2 ),其中 n 为否。的项目。
伪代码
procedure bubbleSort( A : array of items )
for i = 1 to length(A) - 1 inclusive do:
swapped = false
for j = 1 to length(A) - 1 inclusive do:
/* compare the adjacent elements */
if A[i-1] > A[i] then
/* swap them */
swap( A[i-1], A[i] )
swapped = true
end if
end for
/*if no number was swapped that means
array is sorted now, break the loop.*/
if(!swapped) then
break
end for
end procedure
例子
#include <stdio.h>
#include <stdbool.h>
#define MAX 7
int intArray[MAX] = {4,6,3,2,1,9,7};
void printline(int count){
int i;
for(i=0;i <count-1;i++){
printf("=");
}
printf("=\n");
}
void display(){
int i;
printf("[");
// navigate through all items
for(i=0;i<MAX;i++){
printf("%d ",intArray[i]);
}
printf("]\n");
}
void bubbleSort(){
int temp;
int i,j;
bool swapped = false;
// loop through all numbers
for(i=0; i < MAX-1; i++){
swapped = false;
// loop through numbers falling ahead
for(j=1; j < MAX-i; j++){
printf("Items compared: [ %d, %d ]\n" ,intArray[j-1],intArray[j]);
// check if next number is lesser than current no
// swap the numbers.
// (Bubble up the highest number)
if(intArray[j-1] > intArray[j]){
temp=intArray[j-1];
intArray[j-1] = intArray[j];
intArray[j] = temp;
swapped = true;
}
}
// if no number was swapped that means
// array is sorted now, break the loop.
if(!swapped){
break;
}
printf("Iteration %d#: ",(i+1));
display();
}
}
main(){
printf("Input Array: ");
display();
printline(50);
bubbleSort();
printf("Output Array: ");
display();
printline(50);
}
输出
如果我们编译并运行上面的程序,那么它将产生以下输出 -
Input Array: [4, 6, 3, 2, 1, 9, 7] ================================================== Items compared: [ 4, 6 ] Items compared: [ 6, 3 ] Items compared: [ 6, 2 ] Items compared: [ 6, 1 ] Items compared: [ 6, 9 ] Items compared: [ 9, 7 ] Iteration 1#: [4, 3, 2, 1, 6, 7, 9] Items compared: [ 4, 3 ] Items compared: [ 4, 2 ] Items compared: [ 4, 1 ] Items compared: [ 4, 6 ] Items compared: [ 6, 7 ] Iteration 2#: [3, 2, 1, 4, 6, 7, 9] Items compared: [ 3, 2 ] Items compared: [ 3, 1 ] Items compared: [ 3, 4 ] Items compared: [ 4, 6 ] Iteration 3#: [2, 1, 3, 4, 6, 7, 9] Items compared: [ 2, 1 ] Items compared: [ 2, 3 ] Items compared: [ 3, 4 ] Iteration 4#: [1, 2, 3, 4, 6, 7, 9] Items compared: [ 1, 2 ] Items compared: [ 2, 3 ] Output Array: [1, 2, 3, 4, 6, 7, 9] ==================================================
dsa_using_c_sorting_techniques.htm