V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
hakunamatata11
V2EX  ›  推广

[leetcode/lintcode 题解] 字节跳动面试题:用 Rand7()实现 Rand10()

  •  
  •   hakunamatata11 · 2020-07-02 17:44:04 +08:00 · 770 次点击
    这是一个创建于 1396 天前的主题,其中的信息可能已经有所发展或是发生改变。

    已有方法 rand7 可生成 1 到 7 范围内的均匀随机整数,试写一个方法 rand10 生成 1 到 10 范围内的均匀随机整数。 不要使用系统的 Math.random()方法

    1. rand7 已定义。
    2. 传入参数: n 表示 rand10 的调用次数。

    在线评测地址:https://www.lintcode.com/problem/implement-rand10-using-rand7/?utm_source=sc-v2ex-fks

    样例 1:

    输入:1
    输出:[7]
    

    样例 2:

    输入:2
    输出:[8,4]
    

    样例 3:

    输入:3
    输出:[8,1,10]
    

    [题解]
    考点: 随机数 题解:

    1. [1,7] 的随机数, 减一-> [0,6] 的随机数,乘以 7 -> {0,7,14,21,28,35,42} 中的随机数
    2. [1,7]的随机数 1+2 是[1,49]的随机数,且均匀生成 -> [0,48]的随机数取出[0,39]区间 取到的概率是 1/49 除以 4-> [0,9]的随机数 加一->[1,10]的随机数
    public class Solution extends SolBase{
        public  int rand10() {
            while(true){
               int rand49 = (rand7() - 1) * 7 + rand7() - 1;
                if(rand49 <= 39) {
                    return rand49 / 4 + 1;
                }
            }
        }
    }
    

    更多语言代码参见:https://www.jiuzhang.com/solution/implement-rand10-using-rand7/?utm_source=sc-v2ex-fks

    目前尚无回复
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3591 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 10:39 · PVG 18:39 · LAX 03:39 · JFK 06:39
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.