报错
error: subprocess-exited-with-error python setup.py bdist_wheel did not run successfully. 解决方法
确保你的系统上已经安装了 C/C 编译器(如 gcc、g)。 如果你使用的是 Linux 系统,你可以使用包管理器来安装它们。命令如下
u…
引入
我们在学习排序的时候,第一个接触到的应该都是冒泡排序,我们先来复习一下冒泡排序的代码,来作为一个铺垫和引入。
代码如下:
#include<stdio.h>void bubble_sort(int *arr, int sz)
{int i 0;for (i 0; i < sz…