LeetCode 470 用Rand7()实现Rand10()[数学] HERODING的LeetCode之路

Posted HERODING23

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 470 用Rand7()实现Rand10()[数学] HERODING的LeetCode之路相关的知识,希望对你有一定的参考价值。


解题思路:
实现起来其实非常简单,就是保证十个数范围内的数的概率相等,代码如下:

// The rand7() API is already defined for you.
// int rand7();
// @return a random integer in the range 1 to 7

class Solution {
public:
    int rand10() {
        int row, col, idx;
        do {
            row = rand7();
            col = rand7();
            idx = col + (row - 1) * 7;
        } while (idx > 40);
        return 1 + (idx - 1) % 10;
    }
};

以上是关于LeetCode 470 用Rand7()实现Rand10()[数学] HERODING的LeetCode之路的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode No.470 用 Rand7() 实现 Rand10()

Leetcode No.470 用 Rand7() 实现 Rand10()

LeetCode 470 用Rand7()实现Rand10()[数学] HERODING的LeetCode之路

精选力扣500题 第34题 LeetCode 470. 用 Rand7() 实现 Rand10()c++ / java 详细题解

leetcode中等470rand7实现rand10

LeetCode 面试题 17.14. 最小K个数(堆排,快排)/剑指 Offer 10- I. 斐波那契数列 /470. 用 Rand7() 实现 Rand10()(拒绝采样,学!!!)