鱼C论坛

 找回密码
 立即注册
查看: 1761|回复: 1

[新人报道] 如何实现链表字符串交换?

[复制链接]
发表于 2022-1-6 00:31:14 | 显示全部楼层 |阅读模式
15鱼币
如何实现数字从大到小排序的同时,数字前面的名字也随着数字排序?
        #include<stdio.h>
        FILE *in,*out;
        typedef struct
        {
          double x;
          char name[10];
        }STU;
        STU stu[100];
        int cmp(const void *a,const void *b)
        {
          return ((STU*)a)->x > ((STU*)b)->x ? -1:1;
        }
        int main()
        {
          int n,i,temp;
          char temp_name[10];
          char name[10];
          in=fopen("use.txt","r");
          out=fopen("B.txt","w");
          n=0;
          while(fscanf(in,"%s%lf,",stu[n].name,&stu[n].x)!=EOF)
            n++;
                for (int j = 0; j < n - 1; j++)
                {
                        for (int i = 0; i < n - 1 - j; i++)
                        if (stu[i].x < stu[i+1].x)
                        {
                                temp = stu[i].x;
                                stu[i].x = stu[i+1].x;
                                stu[i+1].x = temp;
                        }
                }
          for(i=0;i<n;i++)
            fprintf(out,"%s %lf\n",stu[i].name,stu[i].x);
          fclose(in);
          fclose(out);
          return 0;
        } 

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-1-6 09:05:48 From FishC Mobile | 显示全部楼层
本帖最后由 傻眼貓咪 于 2022-1-6 09:17 编辑

#include <stdio.h>
#include <stdlib.h>

typedef struct{
        int id;
        char name[15];
}fruit;

int compare(const void *a, const void *b){
        fruit *x = (fruit *)a;
        fruit *y = (fruit *)b;
        return (x->id - y->id);
}

int main()
{
        fruit arr[5] = {
                {2, "banana"},
                {7, "oren"},
                {3, "apple"},
                {4, "watermelon"},
                {6, "strawberry"}
        };
        qsort(arr, 5, sizeof(fruit), compare);
        
        for(int i = 0; i < 5; i++) printf("id:%d fruit:%s\n", arr[i].id, arr[i].name);
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-30 01:03

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表