华科不平凡
华科不平凡
全部文章
题解
归档
标签
去牛客网
登录
/
注册
ioogle
why join the navy if you can be a pirate
全部文章
/ 题解
(共2篇)
字符串转数字(atoi)
来自专栏
这道题目玄之又玄,大家记住步骤就好啦: 处理空字符串 忽略前置空格 保存符号 处理非法输入 处理溢出 多想无益,就住就行了。 class Solution { public: int atoi(const char *str) { int idx = 0, sign = ...
溢出
实现库函数
2020-08-15
32
1920
sqrt
来自专栏
二分法,注意考虑溢出 class Solution { public: /** * * @param x int整型 * @return int整型 */ int mysqrt(int x) { // write code he...
实现库函数
二分法
2020-08-10
20
1470