LeetCode日记——【算法】双指针专题
2021-01-18 10:14
标签:pre 有序数组 必须 res 个数 地方 思路 双指针 专题 题1:两数之和 II - 输入有序数组(Two Sum II - Input array is sorted) Leetcode题号:167 难度:Easy 链接:https://leetcode-cn.com/problems/two-sum-ii-input-array-is-sorted/ 题目描述: 给定一个已按照升序排列 的有序数组,找到两个数使得它们相加之和等于目标数。 函数应该返回这两个下标值 index1 和 index2,其中 index1 必须小于 index2。 说明: 返回的下标值(index1 和 index2)不是从零开始的。 输入: numbers = [2, 7, 11, 15], target = 9 代码: 分析: 题2:两数平方和(Sum of Square Numbers) Leetcode题号:633 难度:Easy 链接:https://leetcode-cn.com/problems/sum-of-square-numbers/description/ 题目描述: 给定一个非负整数 c ,你要判断是否存在两个整数 a 和 b,使得 a2 + b2 = c。 例1: 输入: 5 示例2: 输入: 3 代码: 分析: 与第一道思路相同。 需要注意的地方:j的取值从(int)Math.sqrt(c)开始。while()条件中要取到等号,不然2=1*1+1*1就会被判断为false了。 LeetCode日记——【算法】双指针专题 标签:pre 有序数组 必须 res 个数 地方 思路 双指针 专题 原文地址:https://www.cnblogs.com/augenstern/p/12913187.html
你可以假设每个输入只对应唯一的答案,而且你不可以重复使用相同的元素。
示例:
输出: [1,2]
解释: 2 与 7 之和等于目标数 9 。因此 index1 = 1, index2 = 2 。 1 class Solution {
2 public int[] twoSum(int[] numbers, int target) {
3 if(numbers==null) return null;
4 int i=0,j=numbers.length-1;
5 while(ij){
6 int sum = numbers[i]+numbers[j];
7 if(sum==target) {
8 return new int[]{i + 1, j + 1};
9 }else if(sumtarget){
10 i++;
11 }else{
12 j--;
13 }
14 }
15 return null;
16 }
17 }
输出: True
解释: 1 * 1 + 2 * 2 = 5
输出: False 1 class Solution {
2 public boolean judgeSquareSum(int c) {
3 if(creturn false;
4 int i = 0, j = (int) Math.sqrt(c);
5 while(ij){
6 int sum = i*i+j*j;
7 if(sum==c) {
8 return true;
9 }else if(sumc){
10 i++;
11 }else{
12 j--;
13 }
14 }
15 return false;
16 }
17 }
下一篇:python 初识及变量
文章标题:LeetCode日记——【算法】双指针专题
文章链接:http://soscw.com/index.php/essay/43624.html