本文主要是介绍UVa 10008 What's Cryptanalysis? (water ver.),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
10008 - What's Cryptanalysis?
Time limit: 3.000 seconds
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=949
Cryptanalysis is the process of breaking someone else's cryptographic writing. This sometimes involves some kind of statistical analysis of a passage of (encrypted) text. Your task is to write a program which performs a simple analysis of a given text.
Input
The first line of input contains a single positive decimal integer n . This is the number of lines which follow in the input. The next n lines will contain zero or more characters (possibly including whitespace). This is the text which must be analyzed.Output
Each line of output contains a single uppercase letter, followed by a single space, then followed by a positive decimal integer. The integer indicates how many times the corresponding letter appears in the input text. Upper and lower case letters in the input are to be considered the same. No other characters must be counted. The output must be sorted in descending count order; that is, the most frequent letter is on the first output line, and the last line of output indicates the least frequent letter. If two letters have the same frequency, then the letter which comes first in the alphabet must appear first in the output. If a letter does not appear in the text, then that letter must not appear in the output.Sample Input
3 This is a test. Count me 1 2 3 4 5. Wow!!!! Is this question easy?
Sample Output
S 7 T 6 I 5 E 4 O 3 A 2 H 2 N 2 U 2 W 2 C 1 M 1 Q 1 Y 1
完整代码:
/*0.016s*/#include<cstdio>
#include<algorithm>
using namespace std;struct letter
{char ch;int num;bool operator < (const letter a)const{return num != a.num ? num > a.num : ch < a.ch;}
} HashTable[27];char str[100];int main(void)
{int n;scanf("%d\n", &n);///读掉换行~for (int i = 0; i < 26; i++)HashTable[i + 1].ch = 'A' + i;for (int i = 0; i < n; i++){gets(str);for (int j = 0; str[j]; j++)if (str[j] >= 'A' && str[j] <= 'Z' || str[j] >= 'a' && str[j] <= 'z')HashTable[str[j] & 31].num++;}sort(HashTable + 1, HashTable + 27);for (int i = 1; i <= 26; i++)if (HashTable[i].num)printf("%c %d\n", HashTable[i].ch, HashTable[i].num);return 0;
}
这篇关于UVa 10008 What's Cryptanalysis? (water ver.)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!