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

#include <leetcode.h>

Public 成员函数

bool operator() (const pair< TreeNode *, bool > &p1, const pair< TreeNode *, bool > &p2) const
 

详细描述

在文件 leetcode.h3079 行定义.

成员函数说明

◆ operator()()

bool leetcode::house_robber_iii::myeq::operator() ( const pair< TreeNode *, bool > &  p1,
const pair< TreeNode *, bool > &  p2 
) const

在文件 leetcode.cpp8730 行定义.

8730{ return p1.first == p2.first && p1.second == p2.second; }

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