⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 analysechess.h

📁 在linux下使用qt来开发的五子棋
💻 H
字号:

#ifndef ANALYSECHESS_H
#define ANALYSECHESS_H

class AnalyseChess
{
public:
	static int Five( int (*grid)[15], int m, int n, const int &dire );						//判断5连(大于5也可)
	static int Four( int (*realgrid)[15], int m, int n, const int &dire );					//判断冲四、四连
	static int Three( int (*realgrid)[15], int m, int n, const int &dire );					//判断冲三和三连(包括隔一三连)、隔二三连
	static int Two( int (*realgrid)[15], int m, int n, const int &dire );					//判断冲二、二连(包括隔一二连)、隔二二连
	//隔二冲二归入冲二
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -