• 递归函数


    编程语言中,函数Func(Type a,……)直接或间接调用函数本身,则该函数称为递归函数。

    例:输入 5 1 2 3

           输出 11

    不使用递归的方法,使用if......else...

    #include <stdio.h>
    #include <string.h>
    #include <math.h>
    #include <stdlib.h>
    //Complete the following function.

    int find_nth_term(int n, int a, int b, int c) {  
     char s[20]={0,1,2,3};
     int sum = 0;
          if(n==1)
          {
             sum=s[1];  
          }
            else if(n==2)
            {
              sum=s[2]; 
            }
                else if(n==3)
                {
                 sum=s[3]; 
                }
                  else if(n==4)
                    {
                     sum=s[1]+s[2]+s[3]; 
                    }
                    else if(n>4)
                    {
                        s[4]=a+b+c;
                        for(int i=4;i<n;i++)
                        {
                           sum = s[n-1]+s[n-2]+s[n-3];
                        }        
                       
                    }
        return sum;              
    }

    int main() {
        int n, a, b, c;
      
        scanf("%d %d %d %d", &n, &a, &b, &c);
        int ans = find_nth_term(n, a, b, c);
     
        printf("%d", ans); 
        return 0;
    }
     
    使用递归

    int find_nth_term(int n, int a, int b, int c) {

        if(n == 1)
        return a;
        else if (n == 2)
        return b;
        else if (n == 3)
        return c;

        return find_nth_term(n-1,a,b,c)+find_nth_term(n-2,a,b,c)+find_nth_term(n-3,a,b,c);
      }

    int main()
    {
      int n, a, b, c;

      scanf("%d %d %d %d", &n, &a, &b, &c);
      int ans = find_nth_term(n, a, b, c);

      printf("%d", ans);
      return 0;

    }

     
  • 相关阅读:
    struts2:JSP页面及Action中获取HTTP参数(parameter)的几种方式
    Wcf 双工通信的应用
    较完整的轮播图特效
    jQuery图片轮播的具体实现
    一种新的隐藏-显示模式诞生——css3的scale(0)到scale(1)
    你所不知的 CSS ::before 和 ::after 伪元素用法
    scale等比缩放才能做到看上去能让线条以中心点展开
    loading.io一个可以直接生成loading gif图标的站点
    按住ctrl键可以在新窗口打开图片
    背景图片等比缩放的写法background-size简写法
  • 原文地址:https://www.cnblogs.com/hoganhuang/p/14133843.html
Copyright © 2020-2023  润新知