problemscpp
A collection of my answers to algorithm problems in c++.
|
#include <pat.h>
Public 成员函数 | |
customer ()=default | |
customer (unsigned id, const string &arrive_time_str, unsigned p) | |
bool | operator< (const customer &b) const |
Public 属性 | |
unsigned | arrive_time {} |
string | arrive_time_str |
客户的到达时间,用 HH:MM:SS 表示 | |
unsigned | id {} |
unsigned | p {} |
客户的业务办理时间 P(单位:分钟) | |
unsigned | start_time {} |
|
default |
引用了 arrive_time_str , 以及 p.
被这些函数引用 operator<().
pat::a::a1017::customer::customer | ( | unsigned | id, |
const string & | arrive_time_str, | ||
unsigned | p ) |
引用了 arrive_time, arrive_time_str, id , 以及 p.
bool pat::a::a1017::customer::operator< | ( | const customer & | b | ) | const |
引用了 customer() , 以及 arrive_time_str.
unsigned pat::a::a1017::customer::arrive_time {} |
string pat::a::a1017::customer::arrive_time_str |
unsigned pat::a::a1017::customer::id {} |
unsigned pat::a::a1017::customer::p {} |
客户的业务办理时间 P(单位:分钟)
被这些函数引用 customer(), customer() , 以及 pat::a::a1017::customer_comp_p::operator()().