problemscpp
A collection of my answers to algorithm problems in c++.
载入中...
搜索中...
未找到
acwing::acwing1978::path结构体 参考

#include <acwing.h>

Public 成员函数

 path ()
 
 path (int a, int b)
 
bool operator< (const path &p) const
 

Public 属性

int a
 
int b
 

详细描述

在文件 acwing.h372 行定义.

构造及析构函数说明

◆ path() [1/2]

acwing::acwing1978::path::path ( )
inline

在文件 acwing.h376 行定义.

引用了 a , 以及 b.

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

◆ path() [2/2]

acwing::acwing1978::path::path ( int a,
int b )
inline

在文件 acwing.h378 行定义.

378: a(a), b(b){};

引用了 a , 以及 b.

成员函数说明

◆ operator<()

bool acwing::acwing1978::path::operator< ( const path & p) const

在文件 acwing.cpp1002 行定义.

1002{ return this->a < p.a; }

引用了 path() , 以及 a.

类成员变量说明

◆ a

int acwing::acwing1978::path::a

在文件 acwing.h373 行定义.

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

◆ b

int acwing::acwing1978::path::b

在文件 acwing.h374 行定义.

被这些函数引用 path() , 以及 path().


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