problemscpp
A collection of my answers to algorithm problems in c++.
|
#include <leetcode.h>
静态 Public 成员函数 | |
static bool | isEscapePossible (vector< vector< int > > &blocked, vector< int > &source, vector< int > &target) |
static unsigned int | search (unordered_set< point, point_hash > &block_set, point *source, point *target, unsigned int limit) |
在迷宫中以source为起点搜索 更多... | |
在文件 leetcode.h 第 385 行定义.
|
static |
在文件 leetcode.cpp 第 850 行定义.
引用了 search().
|
static |
在迷宫中以source为起点搜索
block_set | 阻塞点集 |
source | 起点 |
target | 终点 |
limit | 搜索步数上限 |
在文件 leetcode.cpp 第 876 行定义.
引用了 leetcode::escape_a_large_maze::point::x , 以及 leetcode::escape_a_large_maze::point::y.
被这些函数引用 isEscapePossible().