遞歸經典問題-(2)

1.下樓梯 從樓上走到樓下共有h個臺階,其中每一步有3種走法:走1個臺階;走2個臺階;走3個臺階。問共有多少種下樓方案? int f(int h) { if(h==1) return 1; if(h==2) return 2; if(h==3) return 4; return f(h-1)+f(h-2)+f(h-3); } 2.分書   有編號爲0~4的5本書,準
相關文章
相關標籤/搜索