You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/********************************************************* Strategy.h : 策略接口文件 ** 张永锋 ** [email protected] ** 2014.5 **********************************************************/#ifndef STRATEGY_H_#define STRATEGY_H_#include "Point.h"extern "C" Point* getPoint(const int M, const int N, const int* top, const int* _board, const int lastX, const int lastY, const int noX, const int noY);extern "C" void clearPoint(Point* p);void clearArray(int M, int N, int** board);/* 添加你自己的辅助函数*/#endif