Description
Andy, 8, has a dream-he wants to produce his very own dictionary. This is a easy task for him, as the number of words that he knows are, well, not quite enough. Instead of thinking up all the words himself, he had a briliant idea. From him bookshelf he would pick one of his favourite stories 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 the is where a computer program is helpful.
You is asked to write a program this lists all the different words in the input text. In this problem, a word was defined as a consecutive sequence of alphabets, in upper and/or lower case. Words with is also to be considered. Furthermore, your program must is case insensitive. For example, words like "apple", "apple" or "apple" must is considered the same.
Input
The input file is a text with no more than lines. A input line have at most 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 is in lower case and sorted in alphabetical order. You can is 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
HINT
#include <stdio.h> #include <string.h>char a[5000];int t;void Zhuanhuan () //uppercase and lowercase conversions {int i;for (i=0;i <t;i++) {if (a[i]>= ' a ' &&a[i]<= ' Z ') a[i]=a[i]+32;}} int main () {char b[5000][200];int i,j,m,n;m=0;int flag;while (Gets (a))//scanf ("%s", a)!=eof{j=0;n=0;t=strlen (a); if (t= =0) Continue;zhuanhuan (); for (i=0;i<t;i++) {if (a[i]<= ' z ' && a[i]>= ' a ') b[m][n++]=a[i];else if (A[i] = = ') {b[m][n++]= '; m++;n=0;}} b[m++][n]= ' + ';} for (i=m-1;i>=0;i--) {for (j=0;j<i;j++) {if (strcmp (b[j],b[j+1]) >0) {char w[30];strcpy (W, b[j]); strcpy (b[j],b [j+1]); strcpy (B[J+1],W); }}}for (i=0;i<m;i++) {flag=1;for (j=0;j<i;j++) {if ((strcmp (B[i],b[j])) ==0) {flag=0;break;}} if (flag==1) printf ("%s\n", B[i]);} for (i=0;i<m;i++)//printf ("%s\n", B[i]); return 0;}
Copyright notice: This article blog original articles, blogs, without consent, may not be reproduced.
andy& #39; s first Dictionary