📄 graph.h
字号:
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
struct Graph_elem{
BOOL expand;
double cumul_cost;
double local_cost[8];
CPoint pixel;
struct Graph_elem* parent;
int redraw;
};
struct Active_List_elem{
struct Graph_elem* not_expanded;
struct Active_List_elem* left;
struct Active_List_elem* down;
};
BOOL Create_Active_List(struct Active_List_elem* min_cost,struct Graph_elem &first);
BOOL Add_Active_List(struct Active_List_elem* min_cost,struct Graph_elem *newListElem);
BOOL Remove_Active_List();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -