示例#1
0
 // place the planes
 // 返回false表示要把该飞机放回棋盘外
 public boolean placePlane(int num, int row, int col, int d) {
   // get real row col
   Tran.in(row, col, d);
   row = Tran.realRow;
   col = Tran.realCol;
   return placePlanePv(num, row, col, d);
 }