problemscpp
A collection of my answers to algorithm problems in c++.
载入中...
搜索中...
未找到
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

在文件 leetcode.h3325 行定义.

引用了 data, l , 以及 r.

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

成员函数说明

◆ operator<()

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

在文件 leetcode.h3328 行定义.

3328{ return l < rhs.l; }

引用了 Node() , 以及 l.

类成员变量说明

◆ data

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

在文件 leetcode.h3323 行定义.

3323{};

被这些函数引用 Node().

◆ l

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

在文件 leetcode.h3322 行定义.

3322{}, r{};

被这些函数引用 Node() , 以及 operator<().

◆ r

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

在文件 leetcode.h3322 行定义.

3322{}, r{};

被这些函数引用 Node().


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