论压行

chen_zhe 沙雕 2020-12-13 19:53:24 2020-12-14 19:41:11 0

别人的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;

压行带师

某大佬:压行是陋习!

{{ vote && vote.total.up }}

共 1 条回复

root 站长

如果是熟练的话,我觉得没问题!