题解 | #查找兄弟单词#

查找兄弟单词

http://www.nowcoder.com/practice/03ba8aeeef73400ca7a37a5f3370fe68

#include <stdio.h>

/* 
比较是否是兄弟单词
成功返回:1
失败返回:0
*/
static int isBrother(char *base, char *str)
{
    int count[26] = {0};
    if(strlen(base) != strlen(str) || strcmp(base, str) == 0)
    {
        //长度不同 或 字符串相同都不是兄弟单词
        return 0;
    }
    else
    {
        for(int i = 0; i < strlen(base); i++)
        {
            count[base[i] - 'a']++;
            count[str[i] - 'a']--;
        }
        for(int i = 0; i < 26; i++)
        {
            if(count[i] != 0)    //非全0,说明字符数量不同
            {
                return 0;
            }
        }
        return 1;
    }
}

int main()
{
    int n = 0;
    if(scanf("%d", &n) != EOF)
    {
        char str[n][12];
        char sort[n][12];
        char base[12] = {0};
        int k = 0;
        memset(str, 0, n*12*sizeof(char));
        memset(sort, 0, n*12*sizeof(char));
        char need_str[n];
        memset(need_str, 0, n*sizeof(char));
        for(int i = 0; i < n; i++)
        {
            scanf("%s", str[i]);
            //printf("str[%d] = [%s]\n", i, str[i]);
        }
        scanf("%s", base);
        //printf("base = [%s]\n", base);
        scanf("%d", &k);
        //printf("k = [%d]\n", k);
        int index = 0;
        for(int i = 0; i < n; i++)
        {
            if(isBrother(base, str[i]))
            {
                strcpy(sort[index], str[i]);
                index++;
            }
        }
        printf("%d\n", index);

        char temp[12] = {0};
        int min = 0;
        for(int i = 0; i < index; i++)
        {
            min = i;
            for(int j = i+1; j < index; j++)
            {
                if(strcmp(sort[min], sort[j]) > 0)
                {
                    min = j;
                }
            }
            if(min != i)
            {
                strcpy(temp, sort[min]);
                strcpy(sort[min], sort[i]);
                strcpy(sort[i], temp);
            }
        }
        
        printf("%s\n", sort[k-1]);
    }
    return 0;
}
全部评论

相关推荐

诨号无敌鸭:恭喜佬,但是有一个小问题:谁问你了?我的意思是,谁在意?我告诉你,根本没人问你,在我们之中0人问了你,我把所有问你的人都请来 party 了,到场人数是0个人,誰问你了?WHO ASKED?谁问汝矣?誰があなたに聞きましたか?누가 물어봤어?我爬上了珠穆朗玛峰也没找到谁问你了,我刚刚潜入了世界上最大的射电望远镜也没开到那个问你的人的盒,在找到谁问你之前我连癌症的解药都发明了出来,我开了最大距离渲染也没找到谁问你了我活在这个被辐射蹂躏了多年的破碎世界的坟墓里目睹全球核战争把人类文明毁灭也没见到谁问你了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务