当前位置: 首页 > 工具软件 > MT > 使用案例 >

MT sort

邵祺
2023-12-01

     或许在某个平行宇宙,会存在一种语言,使用的字母和英语样,但字典序不一样
给出1个字典序和1个字符串,将字符串按新字典序排序。

格式
输入格式:第一行26个互不相同的小写字母,表示新型字典序;
第二行1个字符串,表示待排序字符串。
输出格式:1个字符串代表答案

样例 1
输入: qwertyuiopvmnbcxzasdfghjkl
         peace
输出: eepca

备注
其中:1≤字符串长度≤100000,字符串只包含小写字母

下面是代码实现: 

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

#define N 100007

// 定义结构体X
typedef struct {
    char c;
    int x;
} X;

// 声明变量和数组
int a[30], len; // a数组用于记录字母出现的位置,len表示字符串长度
char s[N]; // 输入的字符串
X ans[N]; // 存储结果的结构体数组

// 比较函数,用于qsort排序
int compare(const void* a, const void* b) {
    X *pa = (X*)a;
    X *pb = (X*)b;
    return pa->x - pb->x; // 按照x升序排列
}

int main() {
    // 输入第一个字符串,并根据每个字母在字母表中的顺序建立映射
    scanf("%s", s);
    for (int i = 0; i < 26; i++)
        a[s[i]-'a'] = i;
    
    // 输入第二个字符串,并将每个字符转化为其在字母表中的序号存入结构体中
    scanf("%s", s);
    len = strlen(s);
    for (int i = 0; i <= len; i++) {
        ans[i].c = s[i];
        ans[i].x = a[s[i]-'a'];
    }
    
    // 对结构体按照x升序排序
    qsort(ans, len, sizeof(X), compare);
    
    // 输出结果
    for (int i = 0; i < len; i++)
        printf("%c", ans[i].c);
    printf("\n");
    
    return 0;
}

 类似资料:

相关阅读

相关文章

相关问答