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

Public 成员函数

 Node (unsigned l, unsigned r=0, type data=false)
 
bool operator< (const Node &rhs) const
 

Public 属性

type data {}
 
unsigned l {}
 
unsigned r {}
 

详细描述

在文件 leetcode.h3321 行定义.

构造及析构函数说明

◆ Node()

leetcode::range_module::Chtholly::Node::Node ( unsigned  l,
unsigned  r = 0,
type  data = false 
)
inline

成员函数说明

◆ operator<()

bool leetcode::range_module::Chtholly::Node::operator< ( const Node rhs) const
inline

在文件 leetcode.h3328 行定义.

3328{ return l < rhs.l; }

引用了 l.

类成员变量说明

◆ data

type leetcode::range_module::Chtholly::Node::data {}

在文件 leetcode.h3323 行定义.

◆ l

unsigned leetcode::range_module::Chtholly::Node::l {}

在文件 leetcode.h3322 行定义.

被这些函数引用 operator<().

◆ r

unsigned leetcode::range_module::Chtholly::Node::r {}

在文件 leetcode.h3322 行定义.


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