У меня есть алгоритм для расчета, держит ли рука игрока стрит в Техасском Холдеме. Он работает нормально, но мне интересно, есть ли более простой способ сделать это, который не включает преобразование массива / строки и т. Д.
Вот упрощенная версия того, что у меня есть. Скажем, игроку сдается рука, представляющая собой массив карт из 52 элементов:
var rawHand = [1,0,0,0,0,0,0,0,0,0,0,0,0, //clubs
0,0,0,0,0,0,0,0,0,0,0,0,0, //diamonds
0,1,1,0,1,0,0,0,0,0,0,0,0, //hearts
0,0,0,1,0,0,0,0,1,0,0,0,0];//spades
1 представляет карту в этом слоте значения. Вышеуказанная рука состоит из 2-х трефов, без алмазов, 3-х сердец, 4-х сердец и 6-сердец, 5-луночных и 10-луночных. Сейчас я смотрю на него, чтобы найти стрит.
var suits = []; //array to hold representations of each suit
for (var i=0; i<4; i++) {
var index = i*13;
// commenting this line as I removed the rest of its use to simplifyy example
//var hasAce = (rawHand[i+13]);
//get a "suited" slice of the rawHand, convert it to a string representation
//of a binary number, then parse the result as an integer and assign it to
//an element of the "suits" array
suits[i] = parseInt(rawHand.slice(index,index+13).join(""),2);
}
// OR the suits
var result = suits[0] | suits[1] | suits[2] | suits[3];
// Store the result in a string for later iteration to determine
// whether straight exists and return the top value of that straight
// if it exists; we will need to determine if there is an ace in the hand
// for purposes of reporting a "low ace" straight (i.e., a "wheel"),
// but that is left out in this example
var resultString = result.toString(2);
//Show the result for the purposes of this example
alert("Result: " + resultString);
Хитрость здесь в том, чтобы ИЛИ различные масти, поэтому есть только одно 2-Ace представление. Я ошибаюсь, думая, что должен быть более простой способ сделать это?