#format java /** * StrategyPattern Example */ import java.util.Random; class Hand { public static final int JUMUG = 0; public static final int GAWI = 1; public static final int BO = 2; public static final Hand[] hand = { new Hand(JUMUG), new Hand(GAWI), new Hand(BO), }; private static final String[] name = { "Jumug", "Gawi", "Bo" }; private int handvalue; private Hand(int handvalue) { this.handvalue = handvalue; } public static Hand getHand(int handvalue) { // SingletonPattern return hand[handvalue]; } public boolean isStrongerThan(Hand h) { return fight(h) == 1; } public boolean isWeakerThan(Hand h) { return fight(h) == -1; } private int fight(Hand h) { if(this == h) { return 0; } else if((this.handvalue+1)%3 == h.handvalue) { return 1; } else { return -1; } } public String toString() { return name[handvalue]; } } interface Strategy { public abstract Hand nextHand(); public abstract void study(boolean win); } class WinningStrategy implements Strategy { private Random random; private boolean won = false; private Hand prevHand; public WinningStrategy(int seed) { random = new Random(seed); } public Hand nextHand() { if(!won) { prevHand = Hand.getHand(random.nextInt(3)); } return prevHand; } public void study(boolean win) { won = win; } } class ProbStrategy implements Strategy { private Random random; private int prevHandValue = 0; private int currentHandValue = 0; private int[][] history = { {1, 1, 1, }, {1, 1, 1, }, {1, 1, 1, }, }; public ProbStrategy(int seed) { random = new Random(seed); } public Hand nextHand() { int bet = random.nextInt(getSum(currentHandValue)); int handvalue = 0; if(bet < history[currentHandValue][0]) { handvalue = 0; } else if(bet < history[currentHandValue][0] + history[currentHandValue][1]) { handvalue = 1; } else { handvalue = 2; } prevHandValue = currentHandValue; currentHandValue = handvalue; return Hand.getHand(handvalue); } private int getSum(int hv) { int sum = 0; for(int i=0; i < 3; i++) { sum += history[hv][i]; } return sum; } public void study(boolean win) { if(win) { history[prevHandValue][currentHandValue]++; } else { history[prevHandValue][(currentHandValue+1)%3]++; history[prevHandValue][(currentHandValue+2)%3]++; } } } class Player { private String name; private Strategy strategy; private int wincount; private int losecount; private int gamecount; public Player(String name, Strategy strategy) { this.name = name; this.strategy = strategy; } public Hand nextHand() { return strategy.nextHand(); } public void win() { strategy.study(true); wincount++; gamecount++; } public void lose() { strategy.study(false); losecount++; gamecount++; } public void even() { gamecount++; } public String toString() { return "["+name+":"+gamecount+" games, "+wincount+" win, " +losecount+" lose"+"]"; } } public class StrategyHand { public static void main(String[] args) { int seed1 = 314; int seed2 = 15; Player player1 = new Player("Hong", new WinningStrategy(seed1)); Player player2 = new Player("Kim", new ProbStrategy(seed2)); for(int i=0; i < 10000; i++) { Hand nextHand1 = player1.nextHand(); Hand nextHand2 = player2.nextHand(); if(nextHand1.isStrongerThan(nextHand2)) { System.out.println("Winner: "+player1); player1.win(); player2.lose(); } else if(nextHand2.isStrongerThan(nextHand1)) { System.out.println("Winner: "+player2); player1.lose(); player2.win(); } else { System.out.println("Even..."); player1.even(); player2.even(); } } System.out.println("Total result:"); System.out.println(""+player1); System.out.println(""+player2); } }