Compare Two Poker Hands
- Create a program to parse a single five card poker hand and rank it according to this list of poker hands. A poker hand is specified as a space separated list of five playing cards. Each input card has two characters indicating face and suit.
- Compare hands by looking at their highest card. Two identical straight flushes tie since suits have no value. Q♣ J♣ 10♣ 9♣ 8♣ Royal Flush. The highest poker hand, containing an Ace, King, Queen, Jack, and a 10, all of the same suit. 10♥ J♥ Q♥ K♥ A♥.
In standard poker there is no ranking of suits for the purpose of comparing hands. If two hands are identical apart from the suits of the cards then they count as equal. In standard poker, if there are two highest equal hands in a showdown, the pot is split between them.
First, if you're playing a game with extra cards, like Hold'em or 7 stud, you first use recursion thusly: Iterate through the set of cards, removing one at a time and recurse. From the recursion results, save the best hand and return it.Once you get down to 5 cards, you first take a histogram of the card ranks. That is, for each rank in the hand, count how often it appears. Sort the histogram by the count backwards (high values first).
If the histogram counts are 4 and 1, then the hand is quads.
If the histogram counts are 3 and a 2, then the hand is a boat.
If the histogram counts are 3, 1 and 1, then the hand is a set.
If the histogram counts are 2, 2 and 1, then the hand is two pair.
If the histogram has 4 ranks in it, then the hand is one pair.
Next, check to see if the hand is a flush. You do this by iterating through the cards to see if the suit of a card is the same as its neighbor. If not, then the hand is not a flush. Don't return a result yet, just note whether or not it's a flush.
Next, check for straights. Do this by sorting the list of cards. Then subtract the rank of the bottom card from the top card. If you get 4, it's a straight. At this point, you must also check either for the wheel or for broadway, depending on whether your sort puts the ace at the top or bottom. I would expect most folks to put the ace at the top of the sort, since it is usually a high card. So to check for the wheel, check to see if the top card is an ace and the 2nd to top card is a 5. If so, then it is the wheel.
If the hand is a straight and a flush, it's a straight-flush. Otherwise if it's one or the other, you can return that.
If we haven't matched the hand by now, it's High Card.