如果要你表示出所有获胜组合,你会怎么表示?
  
  看过几个朋友写的代码都是这样表示的
    bool m_Computer[15][15][572]; // 电脑获胜组合
    bool m_Player[15][15][572]; // 玩家获胜组合
    int m_Win[2][572]; // 各个获胜组合中填入的棋子数  上面的bool m_Player[15][15][572],没有理解  一个获胜组合无非就是五个坐标,如
       typedef struct{ int x; int y; int color;}Piece;
       typedef struct{ Piece[5],int flag }WinCase; // 获胜组合
       WinCase[572] humanWinCases;
       WinCase[572] computerWinCases;难道下面的表示方式,跟上面的三维数组是相通的? 还是没看出来啊,求指教.