免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2378 | 回复: 4
打印 上一主题 下一主题

[C] 求递归算法。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-11-28 13:21 |只看该作者 |倒序浏览

/*有键盘键入n个数(n<50)个英文单词,每个单词由空格分隔。试编写递归函数,判断这n个单词是否字典顺序排列的。*/

论坛徽章:
780
金牛座
日期:2014-02-26 17:49:58水瓶座
日期:2014-02-26 18:10:15白羊座
日期:2014-04-15 19:29:52寅虎
日期:2014-04-17 19:43:21酉鸡
日期:2014-04-19 21:24:10子鼠
日期:2014-04-22 13:55:24卯兔
日期:2014-04-22 14:20:58亥猪
日期:2014-04-22 16:13:09狮子座
日期:2014-05-05 22:31:17摩羯座
日期:2014-05-06 10:32:53处女座
日期:2014-05-12 09:23:11子鼠
日期:2014-05-21 18:21:27
2 [报告]
发表于 2013-11-28 20:18 |只看该作者
本人菜鸟,献丑了。
  1. #include <stdio.h>
  2. #include <iostream>
  3. #include <string.h>
  4. #include <string>
  5. #define n 50
  6. #define buf_len 1024

  7. //if word[0],word[1]...word[x] follow the dictionary order
  8. bool isDicOrder(char* word[], int x){
  9.     if(x==0)
  10.         return true;
  11.     if(std::string(word[x])<std::string(word[x-1]))
  12.         return false;
  13.     else
  14.         return isDicOrder(word,--x);
  15. }

  16. int main(){
  17.     using namespace std;
  18.     char* word[n];
  19.     char input[buf_len];
  20.     cout<<"Please enter up to 50 words seperated by space:"<<endl;
  21.     fgets(input,buf_len,stdin);
  22.     string s=string(input);

  23.     char *tokenPtr=strtok(input," ");
  24.     int i=-1;
  25.     while(tokenPtr!=NULL&&i<n)      
  26.     {            
  27.          word[++i]=tokenPtr;
  28.          tokenPtr=strtok(NULL," ");      
  29.     }

  30.     if(isDicOrder(word,i)){
  31.         cout<<"\nYes! The words: "<<s<<"follow the dictionary order."<<endl;
  32.     }
  33.     else  
  34.         cout<<"\nNO! The words: "<<s<<"doesn't follow the dictionary order."<<endl;

  35.     return 0;
  36. }

复制代码
测试
  1. Please enter up to 50 words seperated by space:
  2. aaa abc bbb bcd def

  3. Yes! The words: aaa abc bbb bcd def
  4. follow the dictionary order.

  5. Please enter up to 50 words seperated by space:
  6. tty mnl aaa abc

  7. NO! The words: tty mnl aaa abc
  8. doesn't follow the dictionary order.

复制代码

论坛徽章:
0
3 [报告]
发表于 2013-11-28 22:51 |只看该作者
好!非常感谢。我崇拜这样说自己菜鸟,但不是菜鸟的同志,不会看不起任何一个小问题。

论坛徽章:
0
4 [报告]
发表于 2013-11-28 22:52 |只看该作者
好!非常感谢。我崇拜这样说自己菜鸟,但不是菜鸟的同志,不会看不起任何一个小问题。回复 2# Herowinter


   

论坛徽章:
0
5 [报告]
发表于 2013-11-30 15:54 |只看该作者
本帖最后由 茹旭东 于 2013-11-30 15:55 编辑

自己花时间弄出来了。谢谢


  1. #include<stdio.h>
  2. #define LENGTH 20

  3. int func(char words[][LENGTH],int i,int maxline,int line)
  4. {       
  5.         if(line==maxline)
  6.                 return 1;
  7.         else
  8.         {
  9.                 char a=words[line][i],b=words[line+1][i];
  10.                 if(a==b&&a!='\0')                return func(words,i+1,maxline,line);
  11.                 if(a==b&&a=='\0')                return func(words,i,maxline,line+1);
  12.                 if(a<b)                                        return func(words,i,maxline,line+1);
  13.                 if(a>b)                                        return 0;       
  14.         }
  15. }

  16. void main()
  17. {
  18.         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;
  19.         char c;
  20.         char words[50][LENGTH];
  21. loop:i=0;
  22.          line=0;
  23.         for(int j=0;j<=49;j++)
  24.          {
  25.                  for(int k=0;k<=LENGTH;k++)
  26.                  words[j][k]='\0';
  27.          }
  28.         printf("input lower words(Separated with SPACE and End with ENTER):\n");
  29.         while((c =getchar())!='\n')        //init array begin
  30.         {
  31.                 if(c==' ')
  32.                 {
  33.                         line++;             //number of words
  34.                         i=0;
  35.                 }
  36.                 else
  37.                 {
  38.                         words[line][i]=c;
  39.                         i++;                //length of word
  40.                 }
  41.         }                                                        //end of init array
  42.        
  43.         int maxline=line;
  44.         if(func(words,0,maxline,0))
  45.                 printf("words follow the dictionary sort\n");
  46.         else
  47.                 printf("words do not follow the dictionary sort\n");
  48.         goto loop;
  49. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP