别人的max
函数是这样写的:
inline int max(int x, int y) {
return x > y ? x : y;
}
我是这样写的:
inline int max(int x, int y) {return x > y ? x : y;}
最近遇到毒瘤题。别人的卡常版max
仿函数是这样写的:
struct Max {
inline int operator () (const int x, const int y) const {
return x > y ? x : y;
}
} max;
我是这样写的:
struct Max {inline int operator () (const int x, const int y) const {return x > y ? x : y;}} max;
压行带师
某大佬:压行是陋习!
共 1 条回复
如果是熟练的话,我觉得没问题!