摘要: 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 阅读全文
posted @ 2020-12-08 20:58 C2022lihan 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1.普通 template T Max (T x, T y) { return x > y ? x : y; }template ... 阅读全文
posted @ 2020-12-08 20:58 C2022lihan 阅读(67) 评论(0) 推荐(0) 编辑