UVa 10815 Andy's First Dictionary

来源:互联网 发布:linux sqlite3 命令 编辑:程序博客网 时间:2024/06/04 18:35

感觉这道题要比之前几个字符串处理的题目难度要大了一些。


题目大意:给若干行字符串,提取出所有单词并去掉重复的,最后按字典顺序输出。


对于输入大致有两种思路,一种是逐个读入字符,遇到字母的话就放到word里面,直到遇到非字母字符,在word最后放'\0'。

我采用第二种思路,就是用gets()函数逐行读到str字符数组里面,然后逐个把单词提取出来。

Count存放的是Dictionary里单词的个数,每提取一个单词,看看Dictionary里有没有该单词,没有的话放到字典里面,并且计数器加1。

由于功力不够深厚抓狂,最后对Dictionary排序的时候不会写cmp函数,因此用不了qsort(),所以又笨笨的写了个冒泡排序,居然没有超时偷笑


Problem B: Andy's First Dictionary

Time limit: 3 seconds


Andy, 8, has a dream - he wants to produce his very own dictionary. This is not an easy task for him, as the number of words that he knows is, well, not quite enough. Instead of thinking up all the words himself, he has a briliant idea. From his bookshelf he would pick one of his favourite story books, from which he would copy out all the distinct words. By arranging the words in alphabetical order, he is done! Of course, it is a really time-consuming job, and this is where a computer program is helpful.

You are asked to write a program that lists all the different words in the input text. In this problem, a word is defined as a consecutive sequence of alphabets, in upper and/or lower case. Words with only one letter are also to be considered. Furthermore, your program must be CaSe InSeNsItIvE. For example, words like "Apple", "apple" or "APPLE" must be considered the same.

Input

The input file is a text with no more than 5000 lines. An input line has at most 200 characters. Input is terminated by EOF.

Output

Your output should give a list of different words that appears in the input text, one in a line. The words should all be in lower case, sorted in alphabetical order. You can be sure that he number of distinct words in the text does not exceed 5000.

Sample Input

Adventures in DisneylandTwo blondes were going to Disneyland when they came to a fork in theroad. The sign read: "Disneyland Left."So they went home.

Sample Output

aadventuresblondescamedisneylandforkgoinghomeinleftreadroadsignsothetheytotwowentwerewhen

国际惯例,AC代码如下:

//#define LOCAL#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>using namespace std;char Dictionary[5005][40];//用来存放单词int Count = 0;  //不重复的单词的个数char str[215], word[40];int cmp(const void *a, const void *b);int main(void){#ifdef LOCALfreopen("10815in.txt", "r", stdin);#endifint i, j;while(gets(str)){int l = strlen(str);if(l == 0)continue;for(i = 0; i < l; ++i)str[i] = tolower(str[i]);i = 0;while(i < l){if((i == 0 || str[i - 1] < 'a' || str[i - 1] > 'z')//判断一个单词的开始&& str[i] >= 'a' && str[i] <= 'z')word[0] = str[i];else{++i;continue;}++i;int j = 1;while(str[i] >= 'a' && str[i] <= 'z' && i < l){word[j++] = str[i++];}word[j] = '\0';for(j = 0; j < Count; ++j){if(!strcmp(Dictionary[j], word))break;}if(j == Count)strcpy(Dictionary[Count++], word);}}for(i = Count - 1; i > 1; --i)//不会用qsort,只能恶心地写个冒泡了{for(j = 0; j < i; ++ j){if(strcmp(Dictionary[j], Dictionary[j + 1]) > 0){char t[30];strcpy(t, Dictionary[j]);strcpy(Dictionary[j], Dictionary[j + 1]);strcpy(Dictionary[j + 1], t); }}}for(i = 0; i < Count; ++i)cout << Dictionary[i] << endl;return 0;}

最后去网上查了一下别人写的cmp函数,试了一下同样AC!

int cmp(const void *a, const void *b){    return strcmp((char *)a, (char *)b);}qsort(Dictionary, Count, sizeof(Dictionary[0]), cmp);



Joke and image taken from the Web
0 0
原创粉丝点击