博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode 167 Two Sum II - Input array is sorted
阅读量:6226 次
发布时间:2019-06-21

本文共 1413 字,大约阅读时间需要 4 分钟。

题目详情

Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.
You may assume that each input would have exactly one solution and you may not use the same element twice.
Input: numbers={2, 7, 11, 15}, target=9
Output: index1=1, index2=2
题目的输入是一个已经按照升序排列的整数数组和一个目标数字。
要求的输出是:数组中加和恰好为目标数字的两个元素的位置(这里的位置不从0开始计算)。
同时题目假设每组输入恰好只有一个答案,并且不能重复使用同一元素。

理解

这道题是可以用两层循环蛮力解决的,但是效率太低了。我们如何能得到一个复杂度为n的解法呢?

我们可以声明两个指针left,right分别指向数组中最小的元素、最大的元素。
如果这两个元素和大于目标数组,right指针左移;如果小于,left指针右移。如果等于,则返回这两个元素的位置(记得用数组的index数值加一)

解法

public int[] twoSum(int[] numbers, int target) {        int[] res = new int[2];        if(numbers == null || numbers.length <2){            return res;        }                int left = 0;        int right = numbers.length-1;                while(left < right){            int temp = numbers[left] + numbers[right];            if(temp == target){                res[0] = left + 1;                res[1] = right +1;                return res;            }else if(temp >target){                right --;            }else{                left++;            }        }                        return res;    }

转载地址:http://msxna.baihongyu.com/

你可能感兴趣的文章
linux:逐行合并两文件(paste命令)
查看>>
mjpg-stream 视频服务 (1)| 简介与配置树莓派使用
查看>>
makefile learning
查看>>
java语言的发展史
查看>>
homebrew安装nginx,mysql,redis,zookeeper
查看>>
bug报告-常用词汇中英对照表
查看>>
EPOCH, BATCH, INTERATION
查看>>
Linux下安装php环境并且配置Nginx支持php-fpm模块
查看>>
结合typedef更为直观的应用函数指针
查看>>
UVA 10410 Tree Reconstruction
查看>>
映射前和映射后的操作
查看>>
java内存区域与内存溢出异常(2)
查看>>
熟悉HBase基本操作
查看>>
LeetCode:3Sum Closet
查看>>
MATLAB拟合和插值
查看>>
IOS int NSInteger NSNumber区分
查看>>
关于jquery 操作select的一些事
查看>>
谈谈JDK线程的伪唤醒
查看>>
ORA-39901 EXPDP分区报错/分区表删除不完全
查看>>
HDU 4946 共线凸包
查看>>