李白打酒

Posted sansamh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了李白打酒相关的知识,希望对你有一定的参考价值。

李白打酒这个用暴力递归很容易算出来,今天想要加上链路记录,原本以为挺简单的事情,却想了很久才想明白,记录一下吧。

public class LibaiDajiu2 {

    static char[] c = new char[15];
    static int sum = 0;
    public static void main(String[] args) {

        System.out.println(fun(5,10,2,0));
    }

    private static int fun(int d  , int h, int count, int step) {
        if( d ==0 && h ==1 && count == 1 ){
            sum ++;
        }
        if(d> 0){
            fun(d-1,h,count*2,step+1);
        }
        if(h>0){
            fun(d,h-1,count-1,step+1);
        }
        return sum;
    }
}

  

以上是关于李白打酒的主要内容,如果未能解决你的问题,请参考以下文章

李白打酒

李白打酒

李白打酒(蓝桥杯2014)

李白打酒

《C#零基础入门之百识百例》(三十七)方法递归 -- 李白打酒

G - 李白打酒加强版(线性DP)