当前位置: 首页 > article >正文

C语言:冒泡排序的注意事项及具体实现

一、注意事项

        1、函数声明为:void bubble_sort(void* base, size_t num, size_t width, int (*cmp)(const void* e1, const void* e2));

        2、base 指向所要排序的数组

        3、num 为数组的元素个数

        4、width 为一个元素占多少个字节的空间

        5、cmp 为函数指针,指向用来进行比较的函数

        6、每趟排序都会把当前未排序部分的最大值移到正确的位置

二、具体实现

#include <stdio.h>
#include <assert.h>

//交换
void sway(char* buff1, char* buff2, size_t width)
{
	char tmp = 0;
	while (width--)
	{
		tmp = *buff1;
		*buff1 = *buff2;
		*buff2 = tmp;

		buff1++;
		buff2++;
	}
}

//比较
int cmp_num(const void* e1, const void* e2)
{
	return *(int*)e1 - *(int*)e2;
}

//冒泡排序
void bubble_sort(void* base, size_t num, size_t width, int (*cmp)(const void* e1, const void* e2))
{
	assert((NULL != base) && (NULL != cmp));//用断言判断 base 以及 cmp 是否为空指针

	int i = 0;
	int j = 0;
	int flag = 1;//假设该数组为有序
	num--;//趟次 num - 1 次就可以了

	for (i = 0; i < num; i++)//趟次
	{
		flag = 1;
		for (j = 0; j < num - i; j++)//一趟的过程
		{
			if (cmp((char*)base + j * width, (char*)base + (j + 1) * width) > 0)
			{
				flag = 0;
				sway((char*)base + j * width, (char*)base + (j + 1) * width, width);
			}
		}

		if (1 == flag)//判断是否有序
		{
			return;
		}
	}
}

int main()
{
	int arr[] = { 2, 4, 2, 1, 6, 3 };
	size_t sz = sizeof(arr) / sizeof(arr[0]);
	bubble_sort(arr, sz, sizeof(arr[0]), cmp_num);//冒泡排序

	int i = 0;
	for (i = 0; i < sz; i++)
	{
		printf("%d ", arr[i]);//结果为:1 2 2 3 4 6
	}

	return 0;
}

附:若有不足,望指出。

^_^感谢^_^


http://www.kler.cn/a/315417.html

相关文章:

  • 2023年MathorCup数学建模B题城市轨道交通列车时刻表优化问题解题全过程文档加程序
  • 力扣662:二叉树的最大宽度
  • Vue.js 项目创建流程
  • C++ 并发专题 - 自旋锁的实现(Spinlock)
  • C++编程技巧与规范-类和对象
  • 深度学习之卷积问题
  • Linux 基础IO 1
  • set的相关函数(3)
  • Node.js的学习2——内置模块(一)
  • 电气设备施工现场风险状态判断ai模型训练数据集
  • 【沪圈游戏公司作品井喷,游戏产业复兴近在眼前】
  • 整数二分算法和浮点数二分算法
  • 【数据结构与算法 | 灵神题单 | 二叉搜索树篇】力扣653
  • 基于SpringBoot的在线点餐系统【附源码】
  • 【C++笔记】C++编译器拷贝优化和内存管理
  • 【Obsidian】当笔记接入AI,Copilot插件推荐
  • SpringCloud alibaba
  • 算法-环形链表(141)
  • 【Elasticsearch】-图片向量化存储
  • ffplay ubuntu24出现:Could not initialize SDL - dsp: No such audio device
  • Redis存储原理
  • ElementUI 用span-method实现循环el-table组件的合并行功能
  • Spring Boot文件上传/下载问题
  • 计算机网络(运输层)
  • Selenium:开源自动化测试框架的Java实战解析
  • SpringCloud Feign 以及 一个标准的微服务的制作