auto commit

This commit is contained in:
CyC2018 2019-10-27 16:42:12 +08:00
parent 01012bfa3f
commit c1e32348d2
2 changed files with 10 additions and 10 deletions

View File

@ -66,17 +66,17 @@ Explanation: 1 * 1 + 2 * 2 = 5
题目描述判断一个非负整数是否为两个整数的平方和
可以看成是在元素为 1\~target 的有序数组中查找两个数使得这两个数的平方和为 target如果能找到则返回 true表示 target 是两个整数的平方和
可以看成是在元素为 0\~target 的有序数组中查找两个数使得这两个数的平方和为 target如果能找到则返回 true表示 target 是两个整数的平方和
本题和 167\. Two Sum II - Input array is sorted 类似只有一个明显区别一个是和为 target一个是平方和为 target可以 167 一样使用双指针得到两个数使其平方和为 target
本题和 167\. Two Sum II - Input array is sorted 类似只有一个明显区别一个是和为 target一个是平方和为 target本题同样可以使用双指针得到两个数使其平方和为 target
题的关键是右指针的初始化实现剪枝从而降低时间复杂度设右指针为 x左指针固定为 1为了使 1<sup>2</sup> + x<sup>2</sup> 的值尽可能接近 target我们可以将 x 取为 sqrt(target)
题的关键是右指针的初始化实现剪枝从而降低时间复杂度设右指针为 x左指针固定为 0为了使 0<sup>2</sup> + x<sup>2</sup> 的值尽可能接近 target我们可以将 x 取为 sqrt(target)
因为最多只需要遍历一次 1\~sqrt(target)所以时间复杂度为 O(log<sub>2</sub>N)又因为只使用了两个额外的变量因此空间复杂度为 O(1)
因为最多只需要遍历一次 0\~sqrt(target)所以时间复杂度为 O(log<sub>2</sub>N)又因为只使用了两个额外的变量因此空间复杂度为 O(1)
```java
public boolean judgeSquareSum(int target) {
if (target <= 0) return false;
if (target < 0) return false;
int i = 0, j = (int) Math.sqrt(target);
while (i <= j) {
int powSum = i * i + j * j;

View File

@ -66,17 +66,17 @@ Explanation: 1 * 1 + 2 * 2 = 5
题目描述判断一个非负整数是否为两个整数的平方和
可以看成是在元素为 1\~target 的有序数组中查找两个数使得这两个数的平方和为 target如果能找到则返回 true表示 target 是两个整数的平方和
可以看成是在元素为 0\~target 的有序数组中查找两个数使得这两个数的平方和为 target如果能找到则返回 true表示 target 是两个整数的平方和
本题和 167\. Two Sum II - Input array is sorted 类似只有一个明显区别一个是和为 target一个是平方和为 target可以 167 一样使用双指针得到两个数使其平方和为 target
本题和 167\. Two Sum II - Input array is sorted 类似只有一个明显区别一个是和为 target一个是平方和为 target本题同样可以使用双指针得到两个数使其平方和为 target
题的关键是右指针的初始化实现剪枝从而降低时间复杂度设右指针为 x左指针固定为 1为了使 1<sup>2</sup> + x<sup>2</sup> 的值尽可能接近 target我们可以将 x 取为 sqrt(target)
题的关键是右指针的初始化实现剪枝从而降低时间复杂度设右指针为 x左指针固定为 0为了使 0<sup>2</sup> + x<sup>2</sup> 的值尽可能接近 target我们可以将 x 取为 sqrt(target)
因为最多只需要遍历一次 1\~sqrt(target)所以时间复杂度为 O(log<sub>2</sub>N)又因为只使用了两个额外的变量因此空间复杂度为 O(1)
因为最多只需要遍历一次 0\~sqrt(target)所以时间复杂度为 O(log<sub>2</sub>N)又因为只使用了两个额外的变量因此空间复杂度为 O(1)
```java
public boolean judgeSquareSum(int target) {
if (target <= 0) return false;
if (target < 0) return false;
int i = 0, j = (int) Math.sqrt(target);
while (i <= j) {
int powSum = i * i + j * j;