a327904410 发表于 2022-2-3 03:46:26

类型的实参与 类型的形参不兼容

这类问题怎么解决吖?



#include<stdio.h>
#include<string.h>
#define max 101

struct Box{
        int value;   // 总价格
        int weight;// 重量
        double price;   // 单价
};

void QuickSort(struct Box *a, int left, int right) {
        int l = left;
        int r = right;
        double tmp;
        if (left < right) {
                tmp = a.price;
                while (l != r) {
                        while (r > l && strcmp(a.price, tmp) >= 0) {
                                r--;
                        }
                        a = a;
                        while (l < r && strcmp(a.price, tmp) <= 0) {
                                l++;
                        }
                        a = a;
                }
                a.price = tmp;
                QuickSort(a, left, l - 1);
                QuickSort(a, l + 1, right);
        }
}

Bailey_Kung 发表于 2022-2-3 07:41:10

先说错误原因:strcmp函数是用来比较字符串的,所以它两个形参类型是char型,而你的tmp是double型,所以类型不匹配。
修正方法:你是想要比较a.price, tmp的话,直接用a.price<= tmp
代码修正:void QuickSort(struct Box *a, int left, int right) {
      int l = left;
      int r = right;
      double tmp;
      if (left < right) {
                tmp = a.price;
                while (l != r) {
                        while (r > l && a.price>= tmp) {
                              r--;
                        }
                        a = a;
                        while (l < r && a.price <= tmp) {
                              l++;
                        }
                        a = a;
                }
                a.price = tmp;
                QuickSort(a, left, l - 1);
                QuickSort(a, l + 1, right);
      }
}

a327904410 发表于 2022-2-3 14:30:20

Bailey_Kung 发表于 2022-2-3 07:41
先说错误原因:strcmp函数是用来比较字符串的,所以它两个形参类型是char型,而你的tmp是double型,所以类 ...

睡醒的时候懂了{:10_256:}谢谢
页: [1]
查看完整版本: 类型的实参与 类型的形参不兼容