摘要: template<typename CpType> struct Cp { // Complex Structure CpType a, b; Cp() {} Cp(CpType _a, CpType _b) {a = _a, b = _b; } Cp operator + (const Cp& t 阅读全文
posted @ 2023-01-21 18:30 Link-Cut-Y 阅读(76) 评论(0) 推荐(0)