Broken Keyboard

On a broken keyboard, some of the keys are worn out. So when you type some sentences, the characters
corresponding to those keys will not appear on screen.

Now given a string that you are supposed to type, and the string that you actually type out, please list those keys
which are for sure worn out.
输入描述:
Each input file contains one test case. For each case, the 1st line contains the original string, and the 2nd line contains the typed-out string. Each string contains

no more than 80 characters which are either English letters [A-Z] (case

insensitive), digital numbers [0-9], or “_” (representing the space). It is guaranteed that both strings are non-empty.

输出描述:
For each test case, print in one line the keys that are worn out, in the order of being detected. The English letters must be capitalized.

Each worn out key must be printed once only. It is guaranteed that there is at least one worn out key.

输入例子:
7_This_is_a_test

_hs_s_a_es

输出例子:
7TI

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

#define LEN 100
void ProcessData (char* original,char* typeout) {


    int lenOrig = strlen(original);
    int lenType = strlen(typeout);

    int i;
    for (i=0; i<lenOrig; ++i)
        if (original[i]>='a' && original[i]<='z')
            original[i] -= 32;

    for (i=0; i<lenType; ++i)
        if (typeout[i]>='a' && typeout[i]<='z')
            typeout[i] -= 32;

}
bool NotInType (char* typeout, int len, char c) {
    for(int i=0; i<len; ++i)
        if (c == typeout[i])
            return false;

    return true;
}

void FindWornoutKey (char *wornoutKey, char* original, char* typeout) {


    int origLen = strlen(original);
    int typeLen = strlen(typeout);

    int iOrig = 0, iType = 0, iWorn = 0;
    for (iOrig=0; iOrig<origLen; iOrig++) {
        if (NotInType(typeout, typeLen, original[iOrig]))  
            wornoutKey[iWorn++] = original[iOrig];
    }

    //remove the repeated charactor
    int wornLen = strlen(wornoutKey);
    int i, j, k;
    for (i=0; i<wornLen-1; ++i) {
        for (j=i+1; j<wornLen; ++j) {
            if (wornoutKey[i] == wornoutKey[j]) {
                for(k=j; k<wornLen-1; ++k) 
                    wornoutKey[k] = wornoutKey[k+1];
                wornoutKey[k] = '\0';
                j--;
                wornLen--;
            }
        }
    }
}
int main (int argc, char *argv[]) {
    char wornoutKey[LEN];
    char original[LEN];
    char typeout[LEN];

    memset(wornoutKey, '\0', LEN);
    memset(original, '\0', LEN);
    memset(typeout, '\0', LEN);

    scanf("%s", original);
    scanf("%s", typeout);

    ProcessData(original, typeout);

    FindWornoutKey(wornoutKey, original, typeout);

    printf("%s", wornoutKey);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值