Heim > php教程 > php手册 > Hauptteil

奇怪的洗牌逻辑 没有出现重复率

WBOY
Freigeben: 2016-06-06 19:36:50
Original
857 Leute haben es durchsucht

跑了1W次,洗牌逻辑耗时2.5019571781158,没有出现重复率,但是感觉奇奇怪怪的,先留着吧。回头再说 无 class demo{ private $dic = array('a', 'b', 'c', 'd'); // 花色 private $kings = array('w1', 'w2'); // 大小王 private $card_set = array(); // 扑克

跑了1W次,洗牌逻辑耗时2.5019571781158, 没有出现重复率,但是感觉奇奇怪怪的,先留着吧。回头再说
class demo
{
    private $dic = array('a', 'b', 'c', 'd'); // 花色

    private $kings = array('w1', 'w2'); // 大小王

    private $card_set = array(); // 扑克牌

    private $card_array = array(); // 洗好的牌


    // 执行随机洗牌
    public function getCardSet()
    {
        $this->createCard();

        for($i = 0; $i < 54; $i++)
        {
            $this->getRandNum();

            $k = $this->key;

            $this->card_array[$i] = $this->card_set[$k];

            unset($this->card_set[$k]);
        }

        ksort($this->card_array);

        return implode(&#39;,&#39;, $this->card_array);
    }

    // 生成扑克牌
    public function createCard()
    {
        $tmp_card = array();

        for($i = 1; $i <= 13; $i++)
        {
            $count = count($this->dic);

            for($j = 0; $j < $count; $j++)
            {
                $tmp_card[] = $this->dic[$j] . $i;
            }
        }

        $this->card_set = array_merge($tmp_card, $this->kings);
    }

    // 生成随机数
    public function getRandNum()
    {
        $num = microtime(true);
        $k = rand(0, 53);
        if(! isset($this->card_set[$k]))
        {
            $this->getRandNum();
        }
        else
        {
            $this->key = $k;
        }
    }
}
Nach dem Login kopieren
Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Empfehlungen
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!