今天被同事问到一个喝酒的问题,题目如下:
啤酒2元一瓶 4个瓶盖能换1瓶啤酒,2个空瓶也能换1瓶啤酒,问:10元钱最多能喝几瓶酒?
于是乎写了一段小代码来解决这个问题:
package test2;
import org.junit.Test;
public class MyTest {
int maxCount = 0;
@Test
public void test01() throws Exception {
recursion(10, 0, 0, 0);
System.out.println("总数:" + maxCount);
}
public void recursion(int money, int cap, int bottle, int count) {
if (cap < 4 && bottle < 2 && money < 2) {
if (maxCount < count) {
maxCount = count;
}
return;
}
if (cap >= 4) {
recursion(money, cap - 4 + 1, bottle + 1, count + 1);
}
if (bottle >= 2) {
recursion(money, cap + 1, bottle - 2 + 1, count + 1);
}
if (money >= 2) {
recursion(money - 2, cap + 1, bottle + 1, count + 1);
}
return;
}
}
结果是15种.但是百度之后发现有人说是20种.
从实际操作上来说15种已经是最多了.
比较坑爹..........
算是回顾一下递归...