c7rious
c7rious
全部文章
题解
归档
标签
去牛客网
登录
/
注册
c7rious的博客
全部文章
/ 题解
(共1篇)
剪绳子,c++
class Solution { public: int cutRope(int number) { int res = 0; // 此处循环中的i是段的长度,等于1时指全是长度为1的段,不能等于number for (int i = 1; i...
剑指offer
c++
剪绳子
题解
2019-12-30
0
902