• Andy's First Dictionary


    Description

    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

    HINT

    #include<stdio.h>
    #include<string.h>
    char a[5000];
    int t;
    void zhuanhuan()     //大写和小写转换
    {
    	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
    ",b[i]);
    	}
    	//for(i=0;i<m;i++)
    	//	printf("%s
    ",b[i]);
    	return 0;
    }


    版权声明:本文博客原创文章,博客,未经同意,不得转载。

  • 相关阅读:
    linux下配置SS5(SOCK5)代理服务
    HttpServletRequest修改/添加header和cookie参数
    jquery ajax 设置全局(常量和变量)
    mysql 5.1超过默认8小时空闲时间解决办法(错误:com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure)
    jquery带token访问接口ajax
    CentOS 7下彻底卸载MySQL数据库
    IntelliJ IDEA 终极破解
    haproxy+tomcat实现负载均衡以及session共享(linux centos7环境)
    RocketMQ集群搭建
    IntelliJ IDEA14如何配置tomcat
  • 原文地址:https://www.cnblogs.com/hrhguanli/p/4684364.html
Copyright © 2020-2023  润新知