牛客640386894号
牛客640386894号
全部文章
分类
题解(9)
归档
标签
去牛客网
登录
/
注册
牛客640386894号的博客
全部文章
(共13篇)
题解 | #求平方根#
牛顿迭代法求平方根 class Solution { public: /** * * @param x int整型 * @return int整型 */ int mysqrt(int x) { double t = x; ...
C++
数学
2022-06-23
0
264
题解 | #右侧更小数#
//定义线段树 class segtree{ public: segtree* leftNode = NULL; segtree* rightNode = NULL; int left = 0; int right = 0; ...
C++
线段树
2022-06-23
0
489
题解 | #跳跃游戏(三)#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @return int整型 ...
C++
2022-06-22
0
418
首页
上一页
1
2
下一页
末页