problemscpp
A collection of my answers to algorithm problems in c++.
Public 成员函数 | 所有成员列表
leetcode::escape_a_large_maze::point_hash结构体 参考

#include <leetcode.h>

Public 成员函数

size_t operator() (const point &p) const
 

详细描述

在文件 leetcode.h381 行定义.

成员函数说明

◆ operator()()

size_t leetcode::escape_a_large_maze::point_hash::operator() ( const point p) const

在文件 leetcode.cpp904 行定义.

904{ return p.x * 1000000 + p.y; }

引用了 leetcode::escape_a_large_maze::point::x , 以及 leetcode::escape_a_large_maze::point::y.


该结构体的文档由以下文件生成: