list_node1.cpp
来自「利用人工智能的经典算法实现迷宫游戏;里面的A星(a*)算法可以很方便的移植到应用」· C++ 代码 · 共 28 行
CPP
28 行
// list_node1.cpp: implementation of the list_node class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "qiyuan.h"
#include "list_node1.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
list_node::list_node()
{
}
list_node::~list_node()
{
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?