P粉6163836252023-09-06 00:26:00
這不是你實現的方式。你的程式碼檢查n是否小於7,這是正確的方式。
這個陳述是從哪裡來的?你肯定可以測試這個前提...並看看它有多大可能性。
這是真的。
你可以很容易地測試你的實作的分佈。你可以反覆呼叫這個函數並記錄你得到的結果,然後看看它隨時間的變化。在統計學中,樣本的大小越大,結果越可靠。
這是一個程式碼片段,它不斷執行goAtChance
函數並記錄呼叫的總次數和true
結果的數量。每隔10毫秒,結果會在頁面上更新,包括true
數量與總數的比例。如果一切正常,這個比例隨時間應該趨近於0.0007。
const getRandomIntUnderN = (n) => Math.floor(Math.random() * n); const goAtChance = (n, m) => getRandomIntUnderN(m) < n; let [outTotal, outHits, outRatio] = document.querySelectorAll("span"); let hits = 0; // Number of results that are true let total = 0; // Total number of results requestAnimationFrame(function loop() { let deadline = performance.now() + 10; do { hits += goAtChance(7, 10000); // boolean coerces to 0 or 1 total++; } while (performance.now() < deadline); // Show the accumulated results outTotal.textContent = total; outHits.textContent = hits; outRatio.textContent = (hits / total).toFixed(8); requestAnimationFrame(loop); // Allow screen to update and then continue });
样本数:<span></span><br> 命中数:<span></span><br> 比例:<span></span>