经典递归问题总结

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了经典递归问题总结相关的知识,希望对你有一定的参考价值。

   深入了解和掌握递归问题是一个高效程序员的基本素养,无论在平时课程学习或者竞赛中,递归思想的地位举足轻重,故在此对一些经典递归问题进行一些总结。
(1)  计算一个数组中元素的累加和
#include<stdio.h>
 
intaddAll(int a[],int begin,int end);
intmain(){
int a[6]={3,5,1,6,34,67};
int sum=0;
//计算a数组的累加和
sum=addAll(a,0,5); 
printf("%d\n",sum);
}
 
intaddAll(int a[],int begin,int end){
if(begin==end){
        return a[begin];
}
int mid=(begin+end)/2;
intsum=addAll(a,begin,mid)+addAll(a,mid+1,end);
return sum;
}
(2)  比较两个数组中元素是否完全相同
#include<stdio.h>
 
bool strcomp(char str1[],char str2[],int length,int begin);
intmain(){
charstr1[10]="hello",str2[10]="hewlo";
//比较两个数组是否相同
printf("%d\n",strcomp(str1,str2,5,0));
}
 
boolstrcomp(char str1[],char str2[],int length,int begin){
if(begin==length){
        return true;
}else{
        if(str1[begin]!=str2[begin]){
               return false;
        }
        returnstrcomp(str1,str2,length,begin+1);
}
}
(3)  从n个球中取出m个,一共有多少可能性
 
#include<stdio.h>
 
intselect( int n,int m ); 
intmain(){
//从n个球中取出m个不同的球,一共有多少种可能性
 printf("从5个球里取出2个球的可能性: %d\n",select(5,2));
}
 
 
intselect( int n,int m ){
if(m==0){
        return 1;
}
if(m>n){
        return 0;
}
if(n==m){
        return 1;
}
return select(n-1,m-1)+select(n-1,m);
}
(4)  求两个字符串的最大公共子序列
#include<stdio.h>
#include<math.h>
 
#define N100
 
intmaxSubsequence(char str1[],char str2[],int begin1,int begin2);
intmax(int a,int b);
intmain(){
char str1[N];
char str2[N];
int max;
scanf("%s %s",str1,str2);
max=maxSubsequence(str1,str2,0,0);
printf("两个字符串的最大公共子序列为: %d\n",max);
return 0;
} 
 
intmaxSubsequence(char str1[],char str2[],int begin1,int begin2){
if(str1[begin1]==‘\0‘ || str2[begin2]==‘\0‘){
        return 0;
}
if(str1[begin1]==str2[begin2]){
        returnmaxSubsequence(str1,str2,begin1+1,begin2+1)+1;
}else{
        return max(maxSubsequence(str1,str2,begin1+1,begin2),maxSubsequence(str1,str2,begin1,begin2+1));
}
}
intmax(int a,int b){
return a>b?a:b;
}

以上是关于经典递归问题总结的主要内容,如果未能解决你的问题,请参考以下文章

递归的经典题目总结

☀️~爆肝万字总结递归~❤️玩转算法系列之我如何才能掌握递归解题的能力❤️~十大经典问题助你突破极限~☀️

Java递归总结

递归总结

超详细总结基于比较的七大经典 排序 -- 不会的童鞋快进来补习

迭代是人,递归是神(迭代与递归的总结:比较)