UVa 10815 Andy's First Dictionary
感觉这道题要比之前几个字符串处理的题目难度要大了一些。
题目大意:给若干行字符串,提取出所有单词并去掉重复的,最后按字典顺序输出。
对于输入大致有两种思路,一种是逐个读入字符,遇到字母的话就放到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 Disneyland Two blondes were going to Disneyland when they came to a fork in the
road. The sign read: "Disneyland Left." So they went home.
Sample Output
a
adventures
blondes
came
disneyland
fork
going
home
in
left
read
road
sign
so
the
they
to
two
went
were
when
国际惯例,AC代码如下:
//#define LOCAL
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std; char Dictionary[][];//用来存放单词
int Count = ; //不重复的单词的个数
char str[], word[]; int cmp(const void *a, const void *b); int main(void)
{
#ifdef LOCAL
freopen("10815in.txt", "r", stdin);
#endif int i, j;
while(gets(str))
{
int l = strlen(str);
if(l == )
continue;
for(i = ; i < l; ++i)
str[i] = tolower(str[i]);
i = ; while(i < l)
{
if((i == || str[i - ] < 'a' || str[i - ] > 'z')//判断一个单词的开始
&& str[i] >= 'a' && str[i] <= 'z')
word[] = str[i];
else
{
++i;
continue;
} ++i;
int j = ;
while(str[i] >= 'a' && str[i] <= 'z' && i < l)
{
word[j++] = str[i++];
}
word[j] = '\0'; for(j = ; j < Count; ++j)
{
if(!strcmp(Dictionary[j], word))
break;
}
if(j == Count)
strcpy(Dictionary[Count++], word);
}
} for(i = Count - ; i > ; --i)//不会用qsort,只能恶心地写个冒泡了
{
for(j = ; j < i; ++ j)
{
if(strcmp(Dictionary[j], Dictionary[j + ]) > )
{
char t[];
strcpy(t, Dictionary[j]);
strcpy(Dictionary[j], Dictionary[j + ]);
strcpy(Dictionary[j + ], t);
}
}
}
for(i = ; i < Count; ++i)
cout << Dictionary[i] << endl;
return ;
}
代码君
最后去网上查了一下别人写的cmp函数,试了一下同样AC!
int cmp(const void *a, const void *b)
{
return strcmp((char *)a, (char *)b);
}
qsort(Dictionary, Count, sizeof(Dictionary[]), cmp);
以上是我几个月前写的代码,现在看起来真挫啊!学习一下紫书STL的用法。最大的特点就是用起来方便而且代码简短不容易出错,而且速度也比我的代码快多了,以上我手写的冒泡排序运行时间为0.256s,加上快排的话大概能缩短到0.1s左右,但这份STL代码仅仅0.062s
set就是数学上的集合,每个元素都不重复。同sort一样,自定义类型也可以构造set,但同样必须定义“小于”运算符。
//#define LOCAL
#include <iostream>
#include <set>
#include <string>
#include <sstream>
using namespace std; set<string> dict; int main(void)
{
#ifdef LOCAL
freopen("10815in.txt", "r", stdin);
#endif string s, buf;
while(cin >> s)
{
for(int i = ; i < s.length(); ++i)
if(isalpha(s[i])) s[i] = tolower(s[i]); else s[i] = ' ';
stringstream ss(s);
while(ss >> buf) dict.insert(buf);
}
for(set<string>::iterator it = dict.begin(); it != dict.end(); ++it)
cout << *it << "\n"; return ;
}
飞快的代码君
UVa 10815 Andy's First Dictionary的更多相关文章
- UVA - 10815 - Andy's First Dictionary STL
Andy, 8, has a dream - he wants to produce his very own dictionary. This is not an easy task for him ...
- UVA 10815 Andy's First Dictionary (C++ STL map && set )
原题链接: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_proble ...
- UVA 10815 Andy's First Dictionary ---set
题目链接 题意:输入一个文本,找出所有不同的单词(连续的字母序列),按字典序从小到大输出.单词不区分大小写. 刘汝佳算法竞赛入门经典(第二版)P112 #include <iostream> ...
- UVA 10815 Andy's First Dictionary【set】
题目链接:https://vjudge.net/contest/211547#problem/C 题目大意: 输入一个文本,找出所有不同的单词(连续的字母序列),按字典序从小到大输出,单词不区分大小写 ...
- Uva 10815 Andy's First Dictionary(字符串)
题目链接:https://vjudge.net/problem/UVA-10815 题意 找出一段文本中的所有单词,以小写形式按照字典序输出. 思路 用空白符替换文本中所有非字母字符后再次读入. 代码 ...
- UVA 10815 Andy's First Dictionary(字符处理)
Andy, 8, has a dream - he wants to produce his very own dictionary. This is not an easy task for him ...
- UVa10815.Andy's First Dictionary
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem& ...
- UVA-10815 Andy's First Dictionary (非原创)
10815 - Andy's First Dictionary Time limit: 3.000 seconds Problem B: Andy's First DictionaryTime lim ...
- 【UVA - 10815】Andy's First Dictionary (set)
Andy's First Dictionary Description 不提英文了 直接上中文大意吧 XY学长刚刚立下了再不过CET就直播xx的flag,为了不真的开启直播模式,XY学长决定好好学习英 ...
随机推荐
- 异步JS:$.Deferred的使用
异步JS:$.Deferred的使用 原文链接:http://www.html5rocks.com/en/tutorials/async/deferred/ 当我们构建一个平稳的,响应式的HTML5应 ...
- slot的含义
1) slot就是槽的意思,是一个资源单位,只有给task分配了一个slot之后,这个task才可以运行.slot分两种,map slot沪蓉reduce slot.另外,slot是一个逻辑概念,一个 ...
- 视频转换工具 Transmageddon
点这里 Transmageddon 是一个采用 Python 语言开发的视频转换工具,支持输出几乎所有的视频格式,同时也可以生成指定平台下的视频格式. 软件界面如下图所示
- HDU 2602 Bone Collector (简单01背包)
Bone Collector http://acm.hdu.edu.cn/showproblem.php?pid=2602 Problem Description Many years ago , i ...
- 定时每天执行前一天的数据导入oracle
#!/bin/bash export LANG="en_US.UTF-8" #设定时间变量,为前一天时间 log_date=`date +%Y-%m-%d -d "-1 ...
- HTTP协议header标头详解
本文根据RFC2616(HTTP/1.1规范),参考 http://www.w3.org/Protocols/rfc2068/rfc2068 http://www.w3.org/Protocols/r ...
- SSH 使用JUnit测试
前提是引入两个包:org.springframework.test-3.1.3.RELEASE和JUnit4. package com.qk.test; import javax.annotation ...
- JavaScript中函数的形参和实参的实现原理剖析
我们都知道JS里面参数的传递是可以不一样的,比如我们有一个函数: <script type="text/javascript"> function one(a,b,c) ...
- 【poj2778-DNA Sequence】AC自动机+矩阵乘法
题意: (只含AGCT)给定m个病毒串,让你构造一个长度为n的字符串(也只含有AGCT),问有多少种方案.n很大:1<=n<=2000000000 题解: 用病毒串建立AC自动机(num个 ...
- 【poj1006-biorhythms】中国剩余定理
http://poj.org/problem?id=1006 题意:中国剩余定理的裸题. 题目可转化为求最小的x满足以下条件: x%23=a;x%28=b;x%33=c; 关于中国剩余定理可看我昨天的 ...