91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php如何實現概率性隨機抽獎

發布時間:2021-06-25 14:54:14 來源:億速云 閱讀:173 作者:小新 欄目:開發技術

小編給大家分享一下php如何實現概率性隨機抽獎,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

1、初始數據:

權重越大,抽取的幾率越高
[獎品1, 權重 5], [ 獎品2, 權重6], [ 獎品3, 權重 7], [ 獎品4, 權重2]

2、處理步驟:

1)N = 5 + 6 + 7 + 2 = 20
2)然后取1-N的隨機數M
3)界定各 獎品的權重范圍值 獎品 1 : 1-5 ; 獎品2 : 6-11; 獎品3: 12-18; 獎品4: 19-20
4) 如果M在某個獎品的權重范圍值內,標識這個獎品被抽取到

<?php
/**
 * 獎品
 */
class Prize {
  # ID
  public $id = null;
  # 權重
  public $weight = null;
  # 獎品名
  public $name = null;
 
  # 權重范圍區間起始值
  protected $start = 0;
  # 權重范圍區間結束值
  protected $end = 0;
 
  public function __construct($id, $weight, $name) {
    if (!$id) {
      throw new Exception('獎品ID為空.');
    }
    $this->id = $id;
    $this->weight = $weight ? $weight : 0;
    $this->name = $name ? $name : '隨機獎品' . $id;
  }
 
  # id
  public function getId() {
    return $this->id;
  }
 
  # 權重
  public function getWeight() {
    return $this->weight;
  }
 
  # 設置權重范圍區間
  public function setRange($start, $end) {
    $this->start = $start;
    $this->end = $end;
  }
 
  # 判斷隨機數是否在權重范圍區間
  public function inRange($num) {
    return ($num >= $this->start) && ($num <= $this->end);
  }
}
 
/**
 * 獎品池
 */
class PrizePoll implements IteratorAggregate, Countable {
  # 獎品集
  protected $items = array();
 
  # 加入獎品
  public function addItem(Prize $item) {
    $this->items[$item->getId()] = $item;
    return $this;
  }
 
  # 刪除獎品
  public function removeItem($itemId) {
    if (isset($this->items[$itemId])) {
      unset($this->items[$itemId]);
    }
    return $this;
  }
 
  # 更新獎品
  public function updateItem(Prize $item) {
    if (isset($this->items[$item->getId()])) {
      $this->items[$item->getId()] = $item;
    }
    return $this;
  }
 
  # 獲取所有獎品
  public function getItems() {
    return $this->items;
  }
 
  # 所有所有可用獎品(如果權重為0,說明這個獎品永遠不可能抽到)
  public function getVisibleItems() {
    $items = array();
    foreach ($this->items as $item) {
      if ($item->getWeight()) {
        $items[$item->getId()] = $item;
      }
    }
    return $items;
  }
 
  # Countable::count
  public function count() {
    return count($this->items);
  }
 
  # IteratorAggregate::getIterator()
  public function getIterator() {
    return new ArrayIterator($this->items);
  }
}
 
/**
 * 簡單的抽獎類
 */
class SimpleTurn {
  # 獎池
  protected $poll = null;
   
  public function __construct(PrizePoll $poll) {
    if ($poll) {
      $this->setPoll($poll);
    }
  }
 
  # 抽獎
  public function run(PrizePoll $poll) {
    $poll = $poll ? $poll : $this->poll;
    if ( ! $poll) {
      throw new Exception('獎池未初始化');
    }
 
    if ($poll->count() <= 0) {
      throw new Exception('獎池為空');
    }
 
    $items = $poll->getVisibleItems();
    if (count($items) <= 0) {
      throw new Exception('獎池為空');
    }
 
    $sum = 0;
    foreach ($items as $item) {
      $start = $sum + 1;
      $sum += $item->getWeight();
      $end = $sum;
 
      # 設置獎品的權重范圍區間
      $item->setRange($start, $end);
    }
 
    # 隨機數
    $rand = $this->getRandNum(1, $sum);
 
    # 區間段判斷
    foreach ($items as $item) {
      if ($item->inRange($rand)) {
        return $item;
      }
    }
    return null;
  }
 
  # 獲取隨機數
  public function getRandNum($min, $max) {
    return mt_rand($min ? $min : 1, $max);
  }
 
  # 設置獎池
  public function setPoll(PrizePoll $poll) {
    $this->poll = $poll;
  }
}
 
# 示例
try {
  $prizePoll = new PrizePoll();
  $prizePoll->addItem(new Prize(1, 5))
    ->addItem(new Prize(2, 6))
    ->addItem(new Prize(3, 7))
    ->addItem(new Prize(4, 2));
 
  $turn = new SimpleTurn($prizePoll);
  $prize = $turn->run();
  var_dump($prize);
} catch (Exception $e) {
  print_r($e);
}

以上是“php如何實現概率性隨機抽獎”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

广宁县| 萨迦县| 达尔| 嘉义县| 巫溪县| 嘉兴市| 汽车| 宁阳县| 昌都县| 新宁县| 彭水| 新郑市| 聂拉木县| 洞头县| 韶关市| 同心县| 塔城市| 静乐县| 安达市| 弋阳县| 崇义县| 南漳县| 仁怀市| 桐庐县| 方城县| 泌阳县| 保定市| 旺苍县| 托里县| 德保县| 丹东市| 昔阳县| 金塔县| 辽中县| 获嘉县| 额敏县| 黑龙江省| 区。| 吉安县| 荆州市| 海丰县|