- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在开发一个扑克概率计算器,它基本上是为了根据用户的起手牌来预测用户赢得扑克游戏的几率。它“玩”了数百万局游戏,然后汇总每手起手牌导致其所有者拥有最高排名手牌的频率。
我已经制定了很多游戏代码,您可以在下面看到:
function playPoker(tableSize) {
//Create the players, the deck and the card table which stores the 5 cards the players have in common
var players = createPlayers(tableSize);
var deck = createDeck();
var cardTable = new CardTable();
//Deal each player two cards
for (i = 0; i < 2; i++) {
for (j = 0; j < players.length; j++) {
deal(deck, players[j]);
}
}
//Put five cards down on the table
for (k = 0; k < 5; k++) {
deal(deck, cardTable);
}
//Check for various winning hands here for each player
for (m = 0; m < players.length; m++) {
//Merge the player's two cards with the five cards on the table
var subjectCards = (players[m].cards).concat(cardTable.cards);
//Make an array of the values of each of the seven cards, which will be used to determine 4 of a kind, 3 of a kind and pairs
var valuesInOrder = getValuesInOrder(subjectCards);
//Create a dummy array, so that valuesInOrder remains unchanged
var straightValues = valuesInOrder.slice();
//Remove any duplicate card, meaning that the array contains only unique values (i.e. 2, 4, 5, 7, K ... NOT 2, 2, 2, 8, K, K, A)
var straightValues = straightenUp(straightValues);
//Calculate how many pairs are in the hand
var numPairs = howManyPairs(valuesInOrder);
//Check whether the player has a royal flush, the highest ranking hand - then check the other hands by ranking
checkRoyalFlush(subjectCards, straightValues);
checkStraightFlush(subjectCards, straightValues);
checkFourOAK(valuesInOrder);
checkFullHouse(valuesInOrder)
checkFlush(subjectCards);
checkStraight(straightValues);
checkThreeOAK(valuesInOrder);
checkTwoPairs(numPairs);
checkPair(numPairs);
}
}`
基本上,每张牌都是一个具有西装属性(从 1 到 4)和值(value)属性(从 2 到 14)的对象。我已经掌握了非常有效地计算排名的所有逻辑 - 但我不知道如何整理每个卡对象的数据(即 K♥ K♠ 导致最高排名手牌的频率,50 次中有多少次)百万?)
显然,我可以创建 if 语句,每次右起手牌获胜时,该语句都会递增,但我需要创建 52^2 个 if 语句。有人对此有更优雅的解决方案吗?谢谢!
最佳答案
你只需要一本有 169 个键的字典,所有的都是独特的起手牌。他们的确切花色并不重要,只要他们是花色,彩虹色或一对。使用这样的字典,您可以增加最高排名手牌的相应值。
关于javascript - 构建扑克概率计算器 - 如何收集有关不断删除和重新创建的对象的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33244280/
一副扑克牌是 52 张牌 13阶4花色 致力于高效的手部表示和评估 A K Q J T 9 8 7 6 5 4 3 2 scdh
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我遇到了一个真正令人困惑的错误,在过去的几个小时里我一直试图解决这个错误,但没有成功。我正在研究扑克实现。最初,我通过迭代循环生成卡片。 const suits = ['Heart', 'Spade'
我是一名优秀的程序员,十分优秀!