const int BOARD_WIDTH = 4; const int BOARD_HEIGHT = 4; const int BLANK_POS = 16; struct Board { //  行 列 int tile[BOARD_HEIGHT*BOARD_WIDTH]; };