470:用 Rand7() 实现 Rand10()
This commit is contained in:
parent
ae0bd6ee58
commit
86ad43af0e
@ -0,0 +1,82 @@
|
||||
//已有方法 rand7 可生成 1 到 7 范围内的均匀随机整数,试写一个方法 rand10 生成 1 到 10 范围内的均匀随机整数。
|
||||
//
|
||||
// 不要使用系统的 Math.random() 方法。
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
// 示例 1:
|
||||
//
|
||||
//
|
||||
//输入: 1
|
||||
//输出: [7]
|
||||
//
|
||||
//
|
||||
// 示例 2:
|
||||
//
|
||||
//
|
||||
//输入: 2
|
||||
//输出: [8,4]
|
||||
//
|
||||
//
|
||||
// 示例 3:
|
||||
//
|
||||
//
|
||||
//输入: 3
|
||||
//输出: [8,1,10]
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
// 提示:
|
||||
//
|
||||
//
|
||||
// rand7 已定义。
|
||||
// 传入参数: n 表示 rand10 的调用次数。
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
// 进阶:
|
||||
//
|
||||
//
|
||||
// rand7()调用次数的 期望值 是多少 ?
|
||||
// 你能否尽量少调用 rand7() ?
|
||||
//
|
||||
// Related Topics 数学 拒绝采样 概率与统计 随机化 👍 307 👎 0
|
||||
|
||||
package leetcode.editor.cn;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
//470:用 Rand7() 实现 Rand10()
|
||||
class ImplementRand10UsingRand7 {
|
||||
public static void main(String[] args) {
|
||||
//测试代码
|
||||
// Solution solution = new ImplementRand10UsingRand7().new Solution();
|
||||
}
|
||||
|
||||
//力扣代码
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
|
||||
/**
|
||||
* The rand7() API is already defined in the parent class SolBase.
|
||||
* public int rand7();
|
||||
*
|
||||
* @return a random integer in the range 1 to 7
|
||||
*/
|
||||
// class Solution extends SolBase {
|
||||
// public int rand10() {
|
||||
// while (true) {
|
||||
// int num = (rand7() - 1) * 7 + rand7();
|
||||
// if (num <= 40) {
|
||||
// return num % 10 + 1;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
|
||||
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,48 @@
|
||||
<p>已有方法 <code>rand7</code> 可生成 1 到 7 范围内的均匀随机整数,试写一个方法 <code>rand10</code> 生成 1 到 10 范围内的均匀随机整数。</p>
|
||||
|
||||
<p>不要使用系统的 <code>Math.random()</code> 方法。</p>
|
||||
|
||||
<ol>
|
||||
</ol>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入: </strong>1
|
||||
<strong>输出: </strong>[7]
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入: </strong>2
|
||||
<strong>输出: </strong>[8,4]
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入: </strong>3
|
||||
<strong>输出: </strong>[8,1,10]
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ol>
|
||||
<li><code>rand7</code> 已定义。</li>
|
||||
<li>传入参数: <code>n</code> 表示 <code>rand10</code> 的调用次数。</li>
|
||||
</ol>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>进阶:</strong></p>
|
||||
|
||||
<ol>
|
||||
<li><code>rand7()</code>调用次数的 <a href="https://en.wikipedia.org/wiki/Expected_value" target="_blank">期望值</a> 是多少 ?</li>
|
||||
<li>你能否尽量少调用 <code>rand7()</code> ?</li>
|
||||
</ol>
|
||||
<div><div>Related Topics</div><div><li>数学</li><li>拒绝采样</li><li>概率与统计</li><li>随机化</li></div></div><br><div><li>👍 307</li><li>👎 0</li></div>
|
Loading…
Reference in New Issue
Block a user