剑指 Offer 61. 扑克牌中的顺子

剑指 Offer 61. 扑克牌中的顺子

题目

链接

https://leetcode-cn.com/problems/bu-ke-pai-zhong-de-shun-zi-lcof/

问题描述

从若干副扑克牌中随机抽 5 张牌,判断是不是一个顺子,即这5张牌是不是连续的。2~10为数字本身,A为1,J为11,Q为12,K为13,而大、小王为 0 ,可以看成任意数字。A 不能视为 14。

示例

输入: [1,2,3,4,5]
输出: True

提示

限制:

数组长度为 5

数组的数取值为 [0, 13] .

思路

大小王可以当任意牌,顺子不能有重复。

那么判断五张牌中除去大小王是否有重复,若无重复,且最大最小值差在5之内,就可以形成顺子。

复杂度分析

时间复杂度 O(n)
空间复杂度 O(n)

代码

Java

    public boolean isStraight(int[] nums) {
        int max = 0, min = 14;
        HashSet<Integer> set = new HashSet<>();
        for (int i = 0; i < 5; i++) {
            int tmp = nums[i];
            if (tmp == 0) {
                continue;
            } else {
                if (set.contains(tmp)) {
                    return false;
                } else {
                    set.add(tmp);
                    max = Math.max(max, tmp);
                    min = Math.min(min, tmp);
                }
            }
        }
        if (max - min < 5) {
            return true;
        } else {
            return false;
        }
    }
posted @ 2020-03-05 16:03  cheng102e  阅读(136)  评论(0编辑  收藏  举报