标签:应该 tps post nbsp ems http pos alt mamicode
给定一个已按照升序排列 的有序数组,找到两个数使得它们相加之和等于目标数。
函数应该返回这两个下标值 index1 和 index2,其中 index1 必须小于 index2。
说明:
来源:力扣(LeetCode)
class Solution { public: vector<int> twoSum(vector<int>& numbers, int target) { vector<int> ret; int index1 = 0; int index2 = numbers.size() - 1; while (index1 < index2) { int sum = numbers[index1] + numbers[index2]; if (sum == target) { ret.push_back(index1 + 1); ret.push_back(index2 + 1); break; } else if (sum < target) ++index1; else --index2; } return ret; } };
LeetCode 167. 两数之和 II - 输入有序数组 [Two Sum II - Input array is sorted (Easy)]
标签:应该 tps post nbsp ems http pos alt mamicode
原文地址:https://www.cnblogs.com/ZSY-blog/p/12872904.html