Leetcode No.69 Sqrt(x)开根号(c++实现)
2021/8/16 11:36:03
本文主要是介绍Leetcode No.69 Sqrt(x)开根号(c++实现),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1. 题目
https://leetcode.com/problems/sqrtx/
2. 分析
2.1 牛顿迭代法
牛顿迭代法是一种求解非线性方程的一种数值方法。具体原理可以参考:https://blog.csdn.net/u014485485/article/details/77599953
具体代码如下:
class Solution { public: int mySqrt(int x) { if (x == 0) { return 0; } int r = x; while (r > x / r) { r = x / r + (r - x/ r) / 2; } return r; } };
代码参考:https://leetcode.com/problems/sqrtx/discuss/25057/3-4-short-lines-Integer-Newton-Every-Language
2.2 二分法
具体代码如下:
class Solution { public: int mySqrt(int x) { if (x == 0 || x == 1) { return x; } int left = 0; int right = x; while (left <= right) { int mid = left + (right - left) / 2; if (mid <= x / mid) { left = mid + 1; } else { right = mid - 1; } } return right; } };
代码参考:https://leetcode.com/problems/sqrtx/discuss/25047/A-Binary-Search-Solution
这篇关于Leetcode No.69 Sqrt(x)开根号(c++实现)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-29怎么去掉UniApp中字符串的空格?-icode9专业技术文章分享
- 2024-11-29Warning: Cannot modify header information - headers already sent by 报错信息是什么?-icode9专业技术文章分享
- 2024-11-29Excel中实现拖动排序的简易教程
- 2024-11-29如何在Excel中使用拖动排序功能
- 2024-11-28阿里云 ECS课程:新手入门教程
- 2024-11-27Excel中实现拖动排序的简单教程
- 2024-11-27Rocket消息队列资料:新手入门指南
- 2024-11-27rocket消息队资料详解与入门指南
- 2024-11-27RocketMQ底层原理资料详解入门教程
- 2024-11-27RocketMQ项目开发资料:新手入门教程