- 论坛徽章:
- 0
|
本帖最后由 茹旭东 于 2013-11-30 15:55 编辑
自己花时间弄出来了。谢谢
- #include<stdio.h>
- #define LENGTH 20
- int func(char words[][LENGTH],int i,int maxline,int line)
- {
- if(line==maxline)
- return 1;
- else
- {
- char a=words[line][i],b=words[line+1][i];
- if(a==b&&a!='\0') return func(words,i+1,maxline,line);
- if(a==b&&a=='\0') return func(words,i,maxline,line+1);
- if(a<b) return func(words,i,maxline,line+1);
- if(a>b) return 0;
- }
- }
- void main()
- {
- int i=0,line=0; //i is the symbol for length of word; maxi is the symbol for length of the max length of word;
- char c;
- char words[50][LENGTH];
- loop:i=0;
- line=0;
- for(int j=0;j<=49;j++)
- {
- for(int k=0;k<=LENGTH;k++)
- words[j][k]='\0';
- }
- printf("input lower words(Separated with SPACE and End with ENTER):\n");
- while((c =getchar())!='\n') //init array begin
- {
- if(c==' ')
- {
- line++; //number of words
- i=0;
- }
- else
- {
- words[line][i]=c;
- i++; //length of word
- }
- } //end of init array
-
- int maxline=line;
- if(func(words,0,maxline,0))
- printf("words follow the dictionary sort\n");
- else
- printf("words do not follow the dictionary sort\n");
- goto loop;
- }
复制代码 |
|