国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

Leetcode 167. Two Sum II - Input array is sorted

2019-11-11 01:31:35
字體:
供稿:網(wǎng)友

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

s思路: 1. 排好序的情況,說明不考慮map,但可以用two pointer:左邊一個(gè)、右邊一個(gè),往中間走! 2. two pointer對排好序的情況,很好用!

class Solution {public: vector<int> twoSum(vector<int>& numbers, int target) { // int l=0,r=numbers.size()-1; while(l<r){ if(numbers[l]+numbers[r]==target) break; if(numbers[l]+numbers[r]<target){ l++; }else r--; } //return {l++,r++};//bug:應(yīng)該先++ return {++l,++r}; }};
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 宁陕县| 乌鲁木齐县| 南汇区| 盐边县| 湖北省| 南充市| 满洲里市| 三明市| 金平| 永年县| 青浦区| 武清区| 泗阳县| 尤溪县| 东城区| 环江| 枣阳市| 民权县| 北宁市| 苗栗县| 白玉县| 天台县| 周口市| 逊克县| 珠海市| 抚宁县| 搜索| 平潭县| 沅陵县| 江孜县| 九台市| 阜新市| 密云县| 兴安县| 江陵县| 遂川县| 阳春市| 大荔县| 那曲县| 大荔县| 盐边县|