免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: 吴秦
打印 上一主题 下一主题

[C] C语言经典题目及解题思路,持续更新中。。。 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2009-06-30 20:09 |只看该作者
第2题为什么我的gcc输出没有问题呢?
pitt@pitt:~/Ccode$ gcc -o test main.c -lm
pitt@pitt:~/Ccode$ ./test
All 2 digit to 5 digit Armstrong integers are following:
153        370        371        407        1634        8208        9474        54748        92727        93084

论坛徽章:
0
12 [报告]
发表于 2009-07-01 17:34 |只看该作者
9、
【问题描述】用递归函数求解两个正整数的最大公约数的过程。
【思路】此题不需太多的思考就是运用欧几里得算法(Euclid’s algorithm)。
  摘自《The Art  of Computer Programmingvolume 1
  (Euclid’s algorithm )Give two postive  integers m and n, find their greatest common divisor, that is ,the largest  positive integer that evenly divide both m and n.
  Step1.[Find remainder.]Divide m by n and  let r be the remainder.(We will have 0<=r<n.)
  Step2.[Is it zero?]If r=0,the algorithm  terminates; n is the answer.
  Step3.[Reduce.]Set m=n,n=r, and go back  to Step1.
  
【代码】
  cCODE:  
  #include<stdio.h>
  #include<stdlib.h>
  int GCD(int m,int n);
  /*function is to find the greatest common divisor between mand n*/
  int main (int argc, char **argv)
  {   
      int m,n,temp;
      printf("Please input m and n:\n");
      scanf("%d %d",&m,&n);   
      if(m<n)
      {/*This is just ensure m>n*/
           temp=m;
           m=n;
           n=temp;  
      }
      printf("The greatest common divisor of (%d,%d) is  %d!\n",m,n,GCD(m,n));           
      system("PAUSE");
      return 0;
  }
  
  int GCD(int m,int n)
  {
      if(m%n==0)
           return n;
      else return GCD(n,m%n);
  }
  
【程序输入输出】
Please input m and n:
10 5
The greatest common divisor of (10,5) is 5!

10、
【问题描述】 已知Ackerman函数对于整数m>=0和n>=0有如下定义:

ack(0,n)=n+1


ack(m,0)=ack(m-1,1)


ack(m,n)=ack(m-1,ack(m,n-1))

【思路】此题明显用递归方法解,由上述定义可得递归公式如下:


          | n+1,               
当m=0时;


ack(m,n)= | ack(m-1,1),         当n=0时;
          | ack(m-1,ack(m,n-1)),其他情况。


【代码】
  cCODE:  
  #include<stdio.h>
  #include<stdlib.h>
  int ack(int m,int n);
  int main (int argc, char **argv)
  {   
      int m,n;
      printf("Please input m and n:\n");
      scanf("%d %d",&m,&n);
      printf("The result of ack(%d,%d) is  %d!\n",m,n,ack(m,n));            
      system("PAUSE");
      return 0;
  }
  
  int ack(int m,int n)
  {
      if(0==m)
           return n+1;
      else if(0==n)
           return ack(m-1,1);
      else return ack(m-1,ack(m,n-1));
  }
  

【程序输入输出】
example 1:
input:
Please input m and n:
0 5
ouput:
The result of ack(0,5) is 6!
example 2:
Please input m and n:
4 0
The result of ack(4,0) is 13!
example 3:
Please input m and n:
2 3
The result of ack(2,3) is 9!

[ 本帖最后由 吴秦 于 2009-7-1 17:58 编辑 ]

论坛徽章:
0
13 [报告]
发表于 2009-07-05 16:26 |只看该作者
mark一下 慢慢看!
多谢楼主!

论坛徽章:
80
20周年集字徽章-庆
日期:2020-10-28 14:09:1215-16赛季CBA联赛之北京
日期:2020-10-28 13:32:5315-16赛季CBA联赛之北控
日期:2020-10-28 13:32:4815-16赛季CBA联赛之天津
日期:2020-10-28 13:13:35黑曼巴
日期:2020-10-28 12:29:1520周年集字徽章-周	
日期:2020-10-31 15:10:0720周年集字徽章-20	
日期:2020-10-31 15:10:07ChinaUnix元老
日期:2015-09-29 11:56:3020周年集字徽章-年
日期:2020-10-28 14:14:56
14 [报告]
发表于 2009-07-07 15:52 |只看该作者
算法确实很好啊
值得借鉴

论坛徽章:
0
15 [报告]
发表于 2009-07-07 17:17 |只看该作者

关于第一个问题

第一题:
代码可以简化下
int count(int n)
{
    if(1==n || 2==n)
        return n;
    else return count(n-1)+count(n-2);
}

论坛徽章:
0
16 [报告]
发表于 2009-07-09 00:01 |只看该作者

回复 #15 leo12ok 的帖子

谢谢这位兄弟的指教,你这样其实跟我那个基本一样。
最近我由于工作的事情比较忙无法更新,望大家见谅!

[ 本帖最后由 吴秦 于 2009-7-9 00:02 编辑 ]

论坛徽章:
0
17 [报告]
发表于 2009-07-17 12:39 |只看该作者
mark

论坛徽章:
0
18 [报告]
发表于 2009-07-18 15:52 |只看该作者
第一题就是斐波那契数列,用矩阵是最好的方法,有logn的时间复杂度。

论坛徽章:
0
19 [报告]
发表于 2009-07-18 21:16 |只看该作者
mark一下,仔细看看,搂住继续

论坛徽章:
0
20 [报告]
发表于 2009-07-18 21:37 |只看该作者
非常好
收藏之
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP