Zhajinhua Game PHP Implementation Code Size Competition
Zha Jinhua Game PHP Implementation Code Size Competition
Programs are inseparable from algorithms. In the previous blog, we have actually discussed the pathfinding algorithm. However, in the example diagram at that time, the optional path was the only one. When we choose an algorithm, we mean to choose the only path. How to choose it?
I still remember when I was in junior high school, I would often hide on the roadside after school in the afternoon and make gold flowers to gamble* money. It seemed that I was addicted to it. Now during the Chinese New Year, we often make gold flowers and gamble* money together, but my luck is not good. We lose every time.
The sun is shining brightly today. I just went out to play during the Qingming Festival, so I didn’t go anywhere today. When I had nothing to do, I thought about how to use a program to compare the sizes of two cards in Golden Flower. Now that I have implemented it, some methods are quite important, so I wrote them down.
Okay, no more nonsense.
I won’t go into the rules for comparing the two decks of cards with Golden Flower. Just indicate when it’s a straight: JQK < A23 < QKA
Idea: Golden Flower (http://www.a8u.net/ )
1" Randomly generate two decks of cards, the structure of each deck is
[php] view plaincopyprint?
- array(
- ), array( 'Club',
- '6'), ), )
- 2” Calculate the score of each deck of cards: each deck of cards has an original size (ie excluding pairs, straights, golden flowers, straight golds, and bobbins), and then each card’s The score is a 2-digit number, with less than 2 digits padded with leading 0s, such as 'A': 14, '10': 10, '2': '02', 'k': 13, '7': 07 Sort the 3 cards according to the number of points (from large to small), and form a 6-digit number. For example, 'A27': 140702, '829': 090802, 'JK8': 131108, '2A10': 141002 Exception, For pairs, put the number of pairs in the first two digits (you will see why this is done later). For example, '779': 070709, '7A7': 070714, 'A33': 030314 The current score is A 6-digit number, set the pair to an original value plus 10*100000, now a 7-digit number. For example, '779': 1070709, '7A7': 1070714, 'A33': 1030314 For smooth For example, add 20*100000 to the result. For example, '345': 2050403, 'QKA': 2141312, '23A': 2140302. For Jinhua, add 30*100000 to the result. For example, 'Spade K, Spade 6. ,Spade J': 3131106 Because the straight gold is actually the sum of the golden flower and the straight child, so the straight gold should be 50*10000. For example, 'Spade 7, Spade 6, Spade 8': 5080706
array( array('Spade','K'), array('Club','6'), array('Spade','J'), )
Copy after login - For the bobbin, it will be Add 60*100000 to the result. For example, '666': 6060606, 'JJJ': 61111113" Compare the size of the two cards (use the calculated score to compare)
The code is as follows (PHP)
[php] view plaincopyprint?
- 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 //Bobbin 60 *100000 [0] == $figure
[2]){- // Golden Flower 30*100000
(- $suit[0] == $suit[1] && $suit[0] == $suit[2]){
- ] == $figure
[1]+1 &&- $figure
[1] ==- $figure[2]+1 || implode($figure
) ==- '140302'){ if($figure[0] == $figure
[1] &&- $figure[1] != $figure
[2]){- //test
- $playCard = new PlayCards();
- $card1 = $playCard->getCard();
- $card2 = $playCard->getCard();
- $result = $playCard->compareCards($card1,$card2);
- echo 'card1 is ',printCard($card1),'
';- echo 'card2 is ',printCard($card2),'
';- $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,',').')'; }
Copy after login以上就介绍了扎金花游戏 PHP 实现代码之大小比赛,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The message "Your organization has asked you to change your PIN" will appear on the login screen. This happens when the PIN expiration limit is reached on a computer using organization-based account settings, where they have control over personal devices. However, if you set up Windows using a personal account, the error message should ideally not appear. Although this is not always the case. Most users who encounter errors report using their personal accounts. Why does my organization ask me to change my PIN on Windows 11? It's possible that your account is associated with an organization, and your primary approach should be to verify this. Contacting your domain administrator can help! Additionally, misconfigured local policy settings or incorrect registry keys can cause errors. Right now

Windows 11 brings fresh and elegant design to the forefront; the modern interface allows you to personalize and change the finest details, such as window borders. In this guide, we'll discuss step-by-step instructions to help you create an environment that reflects your style in the Windows operating system. How to change window border settings? Press + to open the Settings app. WindowsI go to Personalization and click Color Settings. Color Change Window Borders Settings Window 11" Width="643" Height="500" > Find the Show accent color on title bar and window borders option, and toggle the switch next to it. To display accent colors on the Start menu and taskbar To display the theme color on the Start menu and taskbar, turn on Show theme on the Start menu and taskbar

By default, the title bar color on Windows 11 depends on the dark/light theme you choose. However, you can change it to any color you want. In this guide, we'll discuss step-by-step instructions for three ways to change it and personalize your desktop experience to make it visually appealing. Is it possible to change the title bar color of active and inactive windows? Yes, you can change the title bar color of active windows using the Settings app, or you can change the title bar color of inactive windows using Registry Editor. To learn these steps, go to the next section. How to change title bar color in Windows 11? 1. Using the Settings app press + to open the settings window. WindowsI go to "Personalization" and then

Do you see "A problem occurred" along with the "OOBELANGUAGE" statement on the Windows Installer page? The installation of Windows sometimes stops due to such errors. OOBE means out-of-the-box experience. As the error message indicates, this is an issue related to OOBE language selection. There is nothing to worry about, you can solve this problem with nifty registry editing from the OOBE screen itself. Quick Fix – 1. Click the “Retry” button at the bottom of the OOBE app. This will continue the process without further hiccups. 2. Use the power button to force shut down the system. After the system restarts, OOBE should continue. 3. Disconnect the system from the Internet. Complete all aspects of OOBE in offline mode

Taskbar thumbnails can be fun, but they can also be distracting or annoying. Considering how often you hover over this area, you may have inadvertently closed important windows a few times. Another disadvantage is that it uses more system resources, so if you've been looking for a way to be more resource efficient, we'll show you how to disable it. However, if your hardware specs can handle it and you like the preview, you can enable it. How to enable taskbar thumbnail preview in Windows 11? 1. Using the Settings app tap the key and click Settings. Windows click System and select About. Click Advanced system settings. Navigate to the Advanced tab and select Settings under Performance. Select "Visual Effects"

We all have different preferences when it comes to display scaling on Windows 11. Some people like big icons, some like small icons. However, we all agree that having the right scaling is important. Poor font scaling or over-scaling of images can be a real productivity killer when working, so you need to know how to customize it to get the most out of your system's capabilities. Advantages of Custom Zoom: This is a useful feature for people who have difficulty reading text on the screen. It helps you see more on the screen at one time. You can create custom extension profiles that apply only to certain monitors and applications. Can help improve the performance of low-end hardware. It gives you more control over what's on your screen. How to use Windows 11

Screen brightness is an integral part of using modern computing devices, especially when you look at the screen for long periods of time. It helps you reduce eye strain, improve legibility, and view content easily and efficiently. However, depending on your settings, it can sometimes be difficult to manage brightness, especially on Windows 11 with the new UI changes. If you're having trouble adjusting brightness, here are all the ways to manage brightness on Windows 11. How to Change Brightness on Windows 11 [10 Ways Explained] Single monitor users can use the following methods to adjust brightness on Windows 11. This includes desktop systems using a single monitor as well as laptops. let's start. Method 1: Use the Action Center The Action Center is accessible

In iOS 17, Apple introduced several new privacy and security features to its mobile operating system, one of which is the ability to require two-step authentication for private browsing tabs in Safari. Here's how it works and how to turn it off. On an iPhone or iPad running iOS 17 or iPadOS 17, Apple's browser now requires Face ID/Touch ID authentication or a passcode if you have any Private Browsing tab open in Safari and then exit the session or app to access them again. In other words, if someone gets their hands on your iPhone or iPad while it's unlocked, they still won't be able to view your privacy without knowing your passcode
