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);
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章