编程介的小学生 2017-12-01 16:39 采纳率: 20.5%
浏览 742
已采纳

Unique Words

Problem Description
A common problem faced by electronic information providers is determining the number of unique words in a document. The case of a word does not affect its uniqueness. For example, The, tHE and The are all considered equivalent. Punctuation can appear in these documents and is handled as follows:
1) Periods '.' and exclamation marks '!' may appear at the end of a sentence and should not be considered a word, or part of a word.
2) Dashes '-' appear between hyphenated words. The hyphenated words should be considered separately.
3) Commas ',' colons ':' and semicolons ';' appear within a sentence and should not be considered a word, or part of a word.
4) Apostrophes ' appear within contractions and possessive forms. These symbols should be treated as if they never appeared (i.e., as if they were deleted from the word).

Input
The input file contains a series of documents, each separated by an entire line of text containing only the word EOD Each document will contain no more than 1,000 lines and at most 100 unique words. All input lines will not contain more than 80 characters. Numbers, control characters, and punctuation symbols not listed above will not appear in the text. An entire line containing only the string EOT identifies the end of the list of documents; note this last document is terminated by EOT and not EOD

Output
The output should be an alphabetically sorted list of all unique words, with each unique word displayed in uppercase.

Sample Input
The banker hammered home his two-part message! His message,
at times satirical, was that the bank's situation was a mess.
EOD
Hello world
EOD
This is a
final example
EOT

Sample Output
WORDS IN DOCUMENT #1
A
AT
BANKER
BANKS
HAMMERED
HIS
HOME
MESS
MESSAGE
PART
SATIRICAL
SITATUATION
THAT
THE
TIMES
TWO
WAS
WORDS IN DOCUMENT #2
HELLO
WORLD
WORDS IN DOCUMENT #3
A
EXAMPLE
FINAL
IS
THIS

  • 写回答

1条回答 默认 最新

  • threenewbee 2017-12-02 15:25
    关注
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?