摘要:
1.压位(比较简单) const int up = 10; const int M = 1000; struct High { int c[up + 5]; void out () { int poi = up; while (poi >= 1 && c[poi] == 0) poi--; writ 阅读全文
摘要:
1.普通 template T Max (T x, T y) { return x > y ? x : y; }template ... 阅读全文