啊哈算法,小猫钓鱼,Java实现

本文介绍了如何使用Java实现一个名为IKittenService的接口,用于模拟小猫钓鱼的游戏逻辑。通过KittenServiceImpl类的实现,展示了如何处理玩家出牌和判断胜者的过程,以及关键的测试用例。
摘要由CSDN通过智能技术生成

啊哈算法,小猫钓鱼,Java实现

接口

public interface IKittenService {

    int fishing(List<Integer> one, List<Integer> two);

}

实现类

public class KittenServiceImpl implements IKittenService {

    private final Logger log = LoggerFactory.getLogger(IKittenService.class);

    /**
     * 小猫钓鱼实现
     *
     * @param one 玩家1的牌
     * @param two 玩家2的牌
     * @return 获胜者
     */
    @Override
    public int fishing(List<Integer> one, List<Integer> two) {
        // 玩家手上的牌
        Queue<Integer> queueOne = new LinkedList<>(one);
        Queue<Integer> queueTwo = new LinkedList<>(two);

        // 桌子上的牌
        Stack<Integer> stack = new Stack<>();

        int[] boot = new int[14]; // 扑克共14张

        while (!queueOne.isEmpty() && !queueTwo.isEmpty()) {
            this.playCards(queueOne, stack, boot);
            this.playCards(queueTwo, stack, boot);
        }

        log.info("玩家1剩余牌:{}", queueOne);
        log.info("玩家2剩余牌:{}", queueTwo);
        log.info("桌面剩余牌:{}", stack);


        return queueOne.isEmpty() ? 2 : 1;
    }

    /**
     * 出牌方法
     *
     * @param queue 当前出牌人的所有手牌
     * @param stack 桌面上的所有牌
     * @param boot 牌面标记
     */
    private void playCards(Queue<Integer> queue, Stack<Integer> stack, int[] boot) {
        Integer playingCards = queue.peek();
        if (boot[playingCards] == 1) {
            while (!stack.peek().equals(playingCards)) {
                Integer collectedCard = stack.pop();
                boot[collectedCard] = 0;
                queue.add(collectedCard);
            }
        } else {
            stack.push(queue.poll());
            boot[playingCards] = 1;
        }
    }

}

测试

@Test
public void testFishMan() {

    IKittenService kittenService = new KittenServiceImpl();

    Integer[] one = new Integer[] {1, 2, 3, 4, 5, 6};
    List<Integer> listOne = Arrays.asList(one);

    Integer[] two = new Integer[] {1, 4, 2, 3, 5, 6};
    List<Integer> listTwo = Arrays.asList(two);

    int fishMan = kittenService.fishing(listOne, listTwo);
    log.info("最后的获胜者是第{}位选手!", fishMan);

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值