论坛交流
首页办公自动化| 网页制作| 平面设计| 动画制作| 数据库开发| 程序设计| 全部视频教程
应用视频: Windows | Word2007 | Excel2007 | PowerPoint2007 | Dreamweaver 8 | Fireworks 8 | Flash 8 | Photoshop cs | CorelDraw 12
编程视频: C语言视频教程 | HTML | Div+Css布局 | Javascript | Access数据库 | Asp | Sql Server数据库Asp.net  | Flash AS
当前位置 > 文字教程 > C语言程序设计教程
Tag:新手,函数,指针,数据类型,对象,Turbo,入门,运算符,数组,结构,二级,,tc,游戏,试题,问答,编译,视频教程

台阶问题

文章类别:C语言程序设计 | 发表日期:2008-9-24 14:45:48

某人上楼梯,他一步可以迈一个台阶,两个台阶或三个台阶,共有n个台阶,编程输出他所有可能上法.
如:有4个台阶,输出应是:
1    1    1    1
1    1    2
1    2    1
1    3
2    1    1
2    2
3    1

/* stair.c

 The problem of stair

 Copyright By Jimmy, 2002.11
 All Rights Reserved.
*/

#define STAIR_NUM 5
int total=0;
int index;
int que[STAIR_NUM];

void outputstep()
{
   int i;
   for(i=0;i<index;i++)
     printf("-%d",que[i]);

     printf("-\n");
}


void step(int n)
{
  if (n==0) 
  {
    total++;
    printf("---------the NO.%d ----------\n",total);
    outputstep();
    return ;  
  }
  que[index++]=1;
  step(n-1);
  --index;

  if (n>1)
  {
    que[index++]=2;
    step(n-2); 
    --index;
  }

  if(n>2)
  {
    que[index++]=3; 
    step(n-3); 
    --index;
  }
}
main()
{
  printf("\n");
  printf("--------------------------------------\n");
  printf("             stair step               \n");    
  printf("--------------------------------------\n");
  step(STAIR_NUM);
  printf("\n the total is %d \n",total);
} 

视频教程列表
文章教程搜索
 
C语言程序设计推荐教程
C语言程序设计热门教程
看全部视频教程
购买方式/价格
购买视频教程: 咨询客服
tel:15972130058