이 글은 주로 황금꽃튀김 게임 대회를 구현하는 방법을 소개하고 있으며, 황금꽃튀김 게임의 구현 원리와 관련 알고리즘 기법을 분석하고 있어 필요한 친구들이 참고할 수 있습니다.
이 기사의 예제에서는 황금 꽃 게임 경쟁을 구현하는 PHP 방법을 설명합니다. 구체적인 분석은 다음과 같습니다.
프로그램은 알고리즘과 분리될 수 없습니다. 길 찾기 알고리즘은 앞에서 논의했습니다. 그러나 당시 예제 다이어그램에서는 선택적 경로가 유일한 경로였습니다. 알고리즘을 선택한다는 것은 이 고유한 경로를 선택한다는 의미입니다. 어떻게 선택합니까?
두 덱의 황금꽃 튀김 비교 규칙은 다루지 않겠습니다. 스트레이트인 경우 표시해 주세요. JQK < A23 < 각 카드 덱의 구조는
array( array('Spade','K'), array('Club','6'), array('Spade','J'), )코드는 다음과 같습니다.
array( array('Spade','K'), array('Club','6'), array('Spade','J'), )2. 각 카드 덱의 점수를 계산합니다. 각 카드 덱은 원래 크기(즉, 페어, 스트레이트, 골든 플라워 및 스트레이트 골든 제외)를 갖습니다. 튜브의), 각 카드의 점수는 2자리 숫자입니다. 2자리 미만인 경우 'A': 14, '10': 10, '2'와 같이 앞에 0이 추가됩니다. '02', 'k': 13, '7': 07 3장의 카드를 점수에 따라(큰 것부터 작은 것 순으로) 정렬하여 6자리 숫자를 만듭니다. 예를 들어 'A27': 140702, '829': 090802, 'JK8': 131108, '2A10': 141002예외, 쌍의 경우 처음 두 자리에 숫자를 입력하세요(이유를 보시면 알 수 있습니다). 나중에) 마). 예를 들어 '779': 070709, '7A7': 070714, 'A33': 030314현재 점수는 6자리 숫자이고, 쌍은 원래 값에 10*100000 값을 더한 값으로 설정됩니다. 이제 7자리 숫자입니다. 예를 들어 '779': 1070709, '7A7': 1070714, 'A33': 1030314스트레이트의 경우 결과에 20*100000을 추가합니다. 예를 들어 '345': 2050403, 'QKA': 2141312, '23A': 2140302Golden Flower의 경우 결과에 30*100000을 추가합니다. 예를 들어 '스페이드 K, 스페이드 6, 스페이드 J': 3131106스트레이트 골드는 사실 황금꽃과 스트레이트 아이의 합이므로 스트레이트 골드는 50*10000이 되어야 합니다. 예를 들어 'Spade 7, Spade 6, Spade 8': 5080706보빈의 경우 결과에 60*100000을 추가합니다. 예를 들어 '666': 6060606, 'JJJ': 61111113. 두 카드의 크기를 비교해 보세요. (계산된 포인트를 이용해 비교해보세요)그렇게 간단해요! ! 코드는 다음과 같습니다.
<?php class PlayCards { public $suits = array('Spade', 'Heart', 'Diamond', 'Club'); public $figures = array('2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K', 'A'); public $cards = array(); public function __construct() { $cards = array(); foreach($this->suits as $suit){ foreach($this->figures as $figure){ $cards[] = array($suit,$figure); } } $this->cards = $cards; } public function getCard() { shuffle($this->cards); //生成3张牌 return array(array_pop($this->cards), array_pop($this->cards), array_pop($this->cards)); } public function compareCards($card1,$card2) { $score1 = $this->ownScore($card1); $score2 = $this->ownScore($card2); if($score1 > $score2) return 1; elseif($score1 < $score2) return -1; return 0; } private function ownScore($card) { $suit = $figure = array(); foreach($card as $v){ $suit[] = $v[0]; $figure[] = array_search($v[1],$this->figures)+2; } //补齐前导0 for($i = 0; $i < 3; $i++){ $figure[$i] = str_pad($figure[$i],2,'0',STR_PAD_LEFT); } rsort($figure); //对于对子做特殊处理 if($figure[1] == $figure[2]){ $temp = $figure[0]; $figure[0] = $figure[2]; $figure[2] = $temp; } $score = $figure[0].$figure[1].$figure[2]; //筒子 60*100000 if($figure[0] == $figure[1] && $figure[0] == $figure[2]){ $score += 60*100000; } //金花 30*100000 if($suit[0] == $suit[1] && $suit[0] == $suit[2]){ $score += 30*100000; } //顺子 20*100000 if($figure[0] == $figure[1]+1 && $figure[1] == $figure[2]+1 || implode($figure) =='140302'){ $score += 20*100000; } //对子 10*100000 if($figure[0] == $figure[1] && $figure[1] != $figure[2]){ $score += 10*100000; } return $score; } } //test $playCard = new PlayCards(); $card1 = $playCard->getCard(); $card2 = $playCard->getCard(); $result = $playCard->compareCards($card1,$card2); echo 'card1 is ',printCard($card1),'<br/>'; echo 'card2 is ',printCard($card2),'<br/>'; $str = 'card1 equit card2'; if($result == 1) $str = 'card1 is larger than card2'; elseif($result == -1) $str = 'card1 is smaller than card2'; echo $str; function printCard($card) { $str = '('; foreach($card as $v){ $str .= $v[0].$v[1].','; } return trim($str,',').')'; }코드는 다음과 같습니다.
<?php class PlayCards { public $suits = array('Spade', 'Heart', 'Diamond', 'Club'); public $figures = array('2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K', 'A'); public $cards = array(); public function __construct() { $cards = array(); foreach($this->suits as $suit){ foreach($this->figures as $figure){ $cards[] = array($suit,$figure); } } $this->cards = $cards; } public function getCard() { shuffle($this->cards); //生成3张牌 return array(array_pop($this->cards), array_pop($this->cards), array_pop($this->cards)); } public function compareCards($card1,$card2) { $score1 = $this->ownScore($card1); $score2 = $this->ownScore($card2); if($score1 > $score2) return 1; elseif($score1 < $score2) return -1; return 0; } private function ownScore($card) { $suit = $figure = array(); foreach($card as $v){ $suit[] = $v[0]; $figure[] = array_search($v[1],$this->figures)+2; } //补齐前导0 for($i = 0; $i < 3; $i++){ $figure[$i] = str_pad($figure[$i],2,'0',STR_PAD_LEFT); } rsort($figure); //对于对子做特殊处理 if($figure[1] == $figure[2]){ $temp = $figure[0]; $figure[0] = $figure[2]; $figure[2] = $temp; } $score = $figure[0].$figure[1].$figure[2]; //筒子 60*100000 if($figure[0] == $figure[1] && $figure[0] == $figure[2]){ $score += 60*100000; } //金花 30*100000 if($suit[0] == $suit[1] && $suit[0] == $suit[2]){ $score += 30*100000; } //顺子 20*100000 if($figure[0] == $figure[1]+1 && $figure[1] == $figure[2]+1 || implode($figure) =='140302'){ $score += 20*100000; } //对子 10*100000 if($figure[0] == $figure[1] && $figure[1] != $figure[2]){ $score += 10*100000; } return $score; } } //test $playCard = new PlayCards(); $card1 = $playCard->getCard(); $card2 = $playCard->getCard(); $result = $playCard->compareCards($card1,$card2); echo 'card1 is ',printCard($card1),'<br/>'; echo 'card2 is ',printCard($card2),'<br/>'; $str = 'card1 equit card2'; if($result == 1) $str = 'card1 is larger than card2'; elseif($result == -1) $str = 'card1 is smaller than card2'; echo $str; function printCard($card) { $str = '('; foreach($card as $v){ $str .= $v[0].$v[1].','; } return trim($str,',').')'; }
요약
: 위 내용은 이 글의 전체 내용입니다. 모든 분들의 학습에 도움이 되길 바랍니다. 관련 권장 사항:php는 html 태그의 끝 태그에 대한 감지 및 완성 기능을 구현합니다.
PHP는 지정된 접미사 파일에 대한 일괄 업로드 기능을 구현합니다.
php는 템플릿 파일에 대한 구문 분석 및 문자열 처리를 수행합니다.
위 내용은 PHP는 황금 꽃 게임 대회를 구현합니다의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!