反向bublesort保持位置指数?

时间:2019-02-22 11:56:09

标签: c bubble-sort

我有两个大小为8的C表,其中包含以下元素

int  arr1[8]  = {400, 100, 213, 876, 900, 564, 211, 230};
float arr2[8] = {5.5, 2.1, 9.4, 2.6, 7.5, 4.3, 1.1, 7.5};

我想制作一个程序来显示基于arr2值递减的数据(使用bublesort) 如下:

ARR1  ARR2
213   9.4
900   7.5
230   7.5
400   5.5
564   4.3
876   2.6
100   2.1
211   1.1

-

#include <stdio.h>

void swap(float *xp, float *yp) 
{ 
    float temp = *xp; 
    *xp = *yp; 
    *yp = temp; 
} 

void BubbleSort(float arr[], int n) 
{ 
   int i, j; 
   for (i = 0; i < n-1; i++){   

       for (j = 0; j < n-i-1; j++) {

           if (arr[j] < arr[j+1]) 
              swap(&arr[j], &arr[j+1]); 
       }
   }
}

 void main(){
    int  arr1[8]  = {400, 100, 213, 876, 900, 564, 211, 230};
    float arr2[8] = {5.5, 2.1, 9.4, 2.6, 7.5, 4.3, 1.1, 7.5}; 

 }

我的问题是我了解我需要保持索引 行。 请问你能帮帮我吗 ?

1 个答案:

答案 0 :(得分:1)

这看起来有点像家庭作业,所以我不会显示完整的程序。

您有两个选择:

  1. 为数据数组创建索引值为0..7的其他索引数组,并通过交换索引数组值进行排序。像是
    if (arr[index[j]] < arr[index[j+1]]) swap(&index[j], &index[j+1]);

  2. 将两个数组arr1arr2传递给BubbleSort并为两个数组交换具有相同索引对的值。像是
    if (arr2[j] < arr2[j+1]) { swapInt(&arr1[j], &arr1[j+1]); swapFloat(&arr2[j], &arr2[j+1]); }

与使用由索引链接的两个数组(类似于数组的结构)相比,最好使用结构的数组。

struct data {
    int intval;
    float floatval;
};

struct data arr[8];

BubbleSort中类似

if (arr[j].floatval < arr[j+1].floatval)
    swap(&arr[j], &arr[j+1]);