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

📄 asstar.h

📁 用 vc 编 写 的
💻 H
字号:
// ASStar.h: interface for the CASStar class.
//
//////////////////////////////////////////////////////////////////////
#include "SearchPathEngine.h"

#if !defined(AFX_ASSTAR_H__1839950B_07DA_469E_9271_516311C19FBC__INCLUDED_)
#define AFX_ASSTAR_H__1839950B_07DA_469E_9271_516311C19FBC__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#define Height 120
#define Width 176

class CASStar:public CSearchPathEngine  
{
public:
	CASStar();
	virtual ~CASStar();
private:
	int	Value[Height][Width];
	//int startX,startY,targetX,targetY;
	int Size;
public:
	void showThePath(CDC *pDC , int showMode);
	int searchThePath();
	
};

#endif // !defined(AFX_ASSTAR_H__1839950B_07DA_469E_9271_516311C19FBC__INCLUDED_)

⌨️ 快捷键说明

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