加權隨機數產生
選擇具有特定機率的隨機數是程式設計中常見的任務。 Boost 的隨機數產生器提供了一種方便的方法來選擇具有加權機率的項目。
考慮一下您想要選擇具有以下權重的1 到3 之間的隨機數的場景:
演算法
Boost 沒有內建的加權隨機數產生功能。不過,可以應用一個簡單的演算法:
代碼示例
在Boost 中,使用random_device 和mt19937隨機數產生器:
std::mt19937 rng(std::random_device{}()); int total_weight = 90 + 56 + 4; for (int i = 0; i < total_weight; i++) { int random_number = rng() % total_weight; int current_weight = 90; if (random_number < current_weight) { return 1; } current_weight += 56; if (random_number < current_weight) { return 2; } return 3; // Reached the end of the weights }
最佳化
如果體重很少變化且隨機選擇很頻繁,可以透過儲存每個項目的累積權重總和來應用最佳化.這允許更有效的二分搜尋方法。
此外,如果項目數量未知但權重已知,則可以採用水庫採樣來產生加權隨機數。
以上是Boost的隨機數產生器如何用來加權隨機數選擇?的詳細內容。更多資訊請關注PHP中文網其他相關文章!