其他分享
首页 > 其他分享> > 递归模板

递归模板

作者:互联网

Java


public void recur(int level, int param) { 
    // terminator 
    if (level > MAX_LEVEL) {   
      // process result    
       return;  
    }  
       
	// process current logic  
    process(level, param); 
   
    // drill down   
    recur( level: level + 1, newParam);   
 
    // restore current status 
 }

注意:
1、抵制人肉递归
2、找最近重复性
3、数学归纳法思维

标签:递归,recur,level,process,param,current,int,模板
来源: https://blog.csdn.net/qq_43523618/article/details/115288014