Description
输入一定量的单词(#结束),按字母顺序排序后输出,若有重复则只保留一个。
Input
Output
Sample Input
hello
I
how
fine
free
if
free
final
full
all
aware
#
Sample Output
all
aware
final
fine
free
full
hello
how
I
if
Description
输入一定量的单词(#结束),按字母顺序排序后输出,若有重复则只保留一个。
Input
Output
Sample Input
hello
I
how
fine
free
if
free
final
full
all
aware
#
Sample Output
all
aware
final
fine
free
full
hello
how
I
if
这个嘛,可以用STL库中的“优先级队列”来完成。速度快,不爆空间。或者你可以尝试将定义的变量声明为全局变量(会略好一点)。