?? astart.h
字號(hào):
#include "List.h"
#pragma once
class Rect
{
public:
int map_x;
int map_y;
int h_value;
int g_value;
Rect *pre;
};
class Astart
{
public:
Astart(int a[6][13],int w,int l,int s,int e);
~Astart(void);
bool Find();
int get_h_value(int i);
int get_g_value(int i);
void GetResult();
int map[6][13];
List<Rect> value_list;
private:
Rect *rect;
int WIDTH;
int LENGTH;
int start;
int end;
List<int> open_list;
List<int> close_list;;
};
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -