摘要: class Solution { public: static const int MAXSIZE = 59; // 在类中定义常量必须用static int r[MAXSIZE]; int cuttingRope(int n) { memset(r, 0, sizeof(r)); r[0] = 1 阅读全文
posted @ 2022-05-27 23:13 astxh1417 阅读(23) 评论(0) 推荐(0)