Zha Jinhua is a small game, I want to be a programmer. Most of them have played it when they were children! Now let’s take a look at this Sohu interview question! See how to use code to implement Zha Jinhua.
Q question
Cause
两个搜狐的程序员加了一个月班,终于放假了,于是他们决定扎金花渡过愉快的假期 。
Game rules:
There are 52 ordinary cards in total. The cards are one of 2, 3, 4, 5, 6, 7, 8, 9, 10, J, Q, K, and A. The size is increasing. Four; each player draws three cards. The two people compare the three cards in their hands, and the person with the bigger card wins.
The rules for card types are as follows:
1. Three cards that are the same are leopards
2. Three consecutive cards form a straight (A23 does not count as a straight)
3. There are only two cards that are the same pair. Leopard > Straight > Pair > Ordinary card types. When the card types are the same, compare the numerical values of the card types (such as AAA>KKK, QAK>534, QQ2> ;10104) When neither player has a special card type, compare the highest among the three cards in turn. The person with the bigger card wins. If the highest card is the same, the second highest card will be compared, and so on (such as 37K>89Q). If the two cards are the same, it will be a draw.
Input description:
输入两个字符串代表两个玩家的牌(如”10KQ” “354”), 先输入的作为玩家1,后输入的作为玩家2
Output description:
1 代表 玩家1赢 0 代表 平局 -1 代表 玩家2赢 -2 代表不合法的输入
Input example:
KQ3 3Q9 10QA 6102 5810 7KK 632 74J 10102 K77 JKJ 926 68K 27A
Output example:
1 1 -1 -1 1 1 -1
A solution
1 .Logical analysis
(1) Get the strings input by players 1 and 2 and determine whether they are legal
(2) After it is legal, split the string into a string array
(3) Convert the string array into an int array and sort
( 4) Determine the equality of 3 cards
(5) Compare the big and small, who loses and who wins
2. Analysis of difficulties
When there is 10, the problem of string splitting: you can judge the splitting according to the length of the string
Convert the letters For numbers: First convert all the strings you get to uppercase, so that the lowercase and uppercase letters are the same, and then directly use if to judge the return
Compare who loses and who wins : Use the method from big to small to compare, first judge whether there is a leopard, then judge the straight, then judge the pair, and finally judge the problem of handling the straight with no card type
3. Code implementation
package 搜狐面试2016; import java.util.Arrays; import java.util.Scanner; public class Test1 { public static void main(String[] args) { // 2,3,4,5,6,7,8,9,10,J,Q,K,A Scanner scanner = new Scanner(System.in); boolean isContinue=true; while (isContinue) { //1.游戏规则 System.out.println("游戏规则:共52张普通牌,牌面为2,3,4,5,6,7,8,9,10,J,Q,K,A之一,大小递增,各四张; 每人抓三张牌。两人比较手中三张牌大小,大的人获胜。"); System.out.println("对于牌型的规则如下:"); System.out.println("1.三张牌一样即为豹子"); System.out.println("2.三张牌相连为顺子(A23不算顺子)"); System.out.println("3.有且仅有两张牌一样为对子 豹子>顺子>对子>普通牌型 在牌型一样时,比较牌型数值大小"); System.out.println("谁输谁赢:1 --代表玩家1赢;0 --代表 平局 ;-1 --代表玩家2赢 ;-2 --代表不合法的输入"); //2.分别出牌 System.out.println("请玩家1出牌:"); String num1 = scanner.next(); System.out.println("请玩家2出牌:"); String num2 = scanner.next(); //3.判断是否合法 boolean flag=isValid(num1, num2); if(!flag){ //不合法 System.out.println("-2"); }else { //输入合法---先拆分字符串---再转化为int数组 //4.拆分字符串 String[] nums1=getStrArray(num1); String[] nums2=getStrArray(num2); System.out.println("拆分后的字符串数组A:"+Arrays.toString(nums1)); System.out.println("拆分后的字符串数组B:"+Arrays.toString(nums2)); //5.转化为int数组 int[] nums11=strToNumber(nums1); int[] nums22=strToNumber(nums2); System.out.println("转化为int后的数组A:"+Arrays.toString(nums11)); System.out.println("转化为int后的数组B:"+Arrays.toString(nums22)); //6.获得三张牌的相等情况 int[] equalNum11=equalNum(nums11); int[] equalNum22=equalNum(nums22); System.out.println("三张牌的相等情况--数组A:"+Arrays.toString(equalNum11)); System.out.println("三张牌的相等情况--数组B:"+Arrays.toString(equalNum22)); //7.判断输赢 int whoWin=whoWin(equalNum11, nums11, equalNum22, nums22); System.out.println(""+whoWin); } //是否继续 System.out.println("是否继续?输入N或n退出,其他任意键继续!"); String string = scanner.next(); string=string.toUpperCase(); if("N".equals(string)){ isContinue=false; } } } /*1.判断输入的内容是否合法 * 不合法两种情况:(1)出现的字符不是2,3,4,5,6,7,8,9,10,J,Q,K,A (2)每种牌只有4张,超过4张则不合法了 *方法说明: *该方法只处理情况(1),情况(2)放在判断输赢的时候处理,因为第二种情况涉及牌面转化后计算的问题*/ public static boolean isValid(String num1, String num2) { String reg = "([2-9JQKA]|10){3}";// 正则匹配,只能出现2,3,4,5,6,7,8,9,10,J,Q,K,A,并且一共只能出现3次 boolean a = num1.matches(reg); boolean b = num2.matches(reg); // 有一方不合法就返回false if (a == false || b == false) { return false; } else { // 都合法 return true; } } // 1.拆分字符串,得到三个数字 public static String[] getStrArray(String num) { // 字符串的长度和拆分后的数组 int length = num.length(); String[] nums = new String[3]; // 无论输入的J,Q,K,A是否为大写,都改为大写 num.toUpperCase(); // 字符串不含10时,长度都为3 if (length == 3) { // nums=num.split("");//使用该方法拆分会多出一个空格位--比如33a-->[,3,3,1] for (int i = 0; i 2) { nums[0] = nums[2] = "10"; nums[1] = num.substring(2, 3); } else { // 两个1距离等于2时,说明两个10是挨在一起的 if (first == 0) { nums[0] = nums[1] = "10"; nums[2] = num.substring(4); } else { nums[0] = num.substring(0, 1); nums[1] = nums[2] = "10"; } } } else { // 字符串为3个10 for (int i = 0; i b[1]) { return 1; } else if (a[1] primaryB[0]) { return 1; } else if (primaryA[0] b[1]) { return 1; } else if (a[1] thirdB) { return 1; } else if (thirdA primaryB[2]) { return 1; } else if (primaryA[2] primaryB[1]) { return 1; } else if (primaryA[1] primaryB[0]) { return 1; } else if (primaryA[0] <h2 id="strong-Run-the-test-strong"><strong>Run the test</strong></h2><p><strong>The length is illegal</strong><br><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/383c341ff337c87b48f4468a5b9909cf-0.png?x-oss-process=image/resize,p_40" class="lazy" alt="How to implement the Zha Jinhua game with code"></p><p><strong>A single card 6 appears 5 times, which is illegal</strong><br><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/112731fc5aabcfefb7340343c06be2b1-1.png?x-oss-process=image/resize,p_40" class="lazy" alt="How to implement the Zha Jinhua game with code"></p><p><strong>Leopard</strong><br><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/112731fc5aabcfefb7340343c06be2b1-2.png?x-oss-process=image/resize,p_40" class="lazy" alt="How to implement the Zha Jinhua game with code"></p><p><strong>Shunzi and Pair</strong><br><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/112731fc5aabcfefb7340343c06be2b1-3.png?x-oss-process=image/resize,p_40" class="lazy" alt="How to implement the Zha Jinhua game with code"></p><p><strong> are all letters, and Shunzi and Pair</strong><br><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/4d65838ea7c1c524e17fdc04439ab32c-4.png?x-oss-process=image/resize,p_40" class="lazy" alt="How to implement the Zha Jinhua game with code"></p><p><strong> appears 10, two straights</strong><br><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/4d65838ea7c1c524e17fdc04439ab32c-5.png?x-oss-process=image/resize,p_40" class="lazy" alt="How to implement the Zha Jinhua game with code"></p><p><strong> have no card type, directly compare the big and small</strong> <br><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/001/4d65838ea7c1c524e17fdc04439ab32c-6.png?x-oss-process=image/resize,p_40" class="lazy" alt="How to implement the Zha Jinhua game with code"></p>
The above is the detailed content of How to implement the Zha Jinhua game with code. For more information, please follow other related articles on the PHP Chinese website!

选择一个Node的Docker镜像看起来像是一件小事,但是镜像的大小和潜在漏洞可能会对你的CI/CD流程和安全造成重大的影响。那我们如何选择一个最好Node.js Docker镜像呢?

跨域是开发中经常会遇到的一个场景,也是面试中经常会讨论的一个问题。掌握常见的跨域解决方案及其背后的原理,不仅可以提高我们的开发效率,还能在面试中表现的更加

本站9月2日消息,任天堂官网披露员工数据,新员工留存率(2019年4月入职并于2022年4月继续在公司工作的应届毕业生比例)高达98.8%,其中男性100%、女性96%。这意味着任天堂每聘用100名新员工,约有一人决定辞职,而日本平均新员工留存率为70%。冈本启武,UZUZ株式会社的首席执行官,表示:“大公司通常提供高薪和良好福利,因此员工留存率较高,尤其是任天堂作为日本受欢迎的代表公司。”“去年,任天堂的平均年薪为988万日元(约合49.2万元人民币),虽然游戏行业中有一些公司的年薪比任天堂更

JS 单例模式是一种常用的设计模式,它可以保证一个类只有一个实例。这种模式主要用于管理全局变量,避免命名冲突和重复加载,同时也可以减少内存占用,提高代码的可维护性和可扩展性。

自从ChatGPT掀起浪潮,不少人都在担心AI快要抢人类饭碗了。然鹅,现实可能更残酷QAQ......据就业服务平台Resume Builder调查统计,在1000多家受访美国企业中,用ChatGPT取代部分员工的,比例已达到惊人的48%。在这些企业中,有49%已经启用ChatGPT,还有30%正在赶来的路上。就连央视财经也为此专门发过一个报道:相关话题还曾一度冲上了知乎热榜,众网友表示,不得不承认,现在ChatGPT等AIGC工具已势不可挡——浪潮既来,不进则退。有程序员还指出:用过Copil

url模块和querystring模块是非常重要的两个URL处理模块。在做node服务端的开发时会经常用到。

JavaScript怎么判断数据类型?本篇文章给大家分享JS 判断数据类型的 8 种方式,有效帮助工作和面试,面试官看了微微一笑。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


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

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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

SublimeText3 Linux new version
SublimeText3 Linux latest version
