ZealYoung
ZealYoung
全部文章
算法思想
C++Code(4)
Computer Network(3)
Computer Organization(6)
Coursera(30)
Daily Records(17)
Data Structure(5)
Geek(1)
IRON PKU(2)
Notes on Algorithm(25)
Operating Systems(5)
Problems&Solutions(6)
PTA(34)
Thinking in Algorithm(10)
Unsolved(1)
自学之道(1)
题解(1)
归档
标签
去牛客网
登录
/
注册
ZealYoung Blog
一直如我,永远生长~
全部文章
/ 算法思想
(共1篇)
简单的二分法解决开多次根
思路 限定二分的边界,不断逼近即可。 简单原则,选择需要开根号的数为其中一个边界。 代码主体 double figure(double x) { return x * x * x; } int main() { cout << "Input Your Num:" <...
C++
二分查找
2022-03-03
0
418