您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 有序整型数组,插入一个动态输入整数,保证插入后依然有序。(利用冒泡排序)

  2. 思路: 就是把要插入的数,放入数组的末尾,然后再重新排序就可以了。 直接上代码。 #include using namespace std; const int maxn=1e3+1; int a[maxn],x; void bubble_sort(int n) { //n为数组的长度 for(int i=0; i<n; i++) { for(int j=0; ja[j+1]) { //从大到小排序。 int temp=a[j];//定义一个中间变量来使两个元素互换
  3. 所属分类:其它

    • 发布日期:2021-01-08
    • 文件大小:52224
    • 提供者:weixin_38597990