冒泡排序(bubble sort)是一种简单的排序算法,它重复地遍历待排序的数组,一次比较两个相邻的元素,如果它们的顺序错误就把它们交换过来。以下是使用c语言实现冒泡排序的示例代码:
#include <stdio.h>
void bubbleSort(int arr[], int n) {
for (int i = 0; i < n - 1; i++) {
// 每轮冒泡将最大的元素移动到末尾
for (int j = 0; j < n - i - 1; j++) {
// 如果当前元素比下一个元素大,交换它们的位置
if (arr[j] > arr[j + 1]) {
// 交换元素
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
int main() {
int arr[] = {64, 34, 25, 12, 22, 11, 90};
int n = sizeof(arr) / sizeof(arr[0]);
printf("原始数组:");
for (int i = 0; i < n; i++) {
printf("%d ", arr[i]);
}
printf("\n");
// 调用冒泡排序函数
bubbleSort(arr, n);
printf("排序后的数组:");
for (int i = 0; i < n; i++) {
printf("%d ", arr[i]);
}
printf("\n");
return 0;
}在上述代码中,bubbleSort 函数实现了冒泡排序的逻辑。在 main 函数中,我们定义了一个整数数组 arr,调用 bubbleSort 函数对数组进行排序,并输出排序前后的数组内容。这个例子演示了如何使用C语言实现冒泡排序算法。
开源计算机视觉库拥有超过2500个算法,提供详细的文档和实时计算机视觉的示例代码。它可以在Windows、Linux、Mac OS X、Android、iOS上运行,并通过JavaScript在您的浏览器中使用。语言:C++、Python、Julia、Javascript主页:https://opencv.org问答论坛:https://forum.opencv.org/文档:https://docs.opencv.org源代码:https://github.com/opencv请特别关注我们的教程!ht
20
以上就是C语言冒泡排序法的示例代码的详细内容,更多请关注php中文网其它相关文章!
C语言怎么学习?C语言怎么入门?C语言在哪学?C语言怎么学才快?不用担心,这里为大家提供了C语言速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号