码迷,mamicode.com
首页 > 其他好文 > 详细

剑指OFFER----面试题57. 和为s的两个数字

时间:2020-03-11 15:46:32      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:size   com   return   get   试题   offer   tmp   class   i++   

链接:https://leetcode-cn.com/problems/he-wei-sde-liang-ge-shu-zi-lcof/

代码

class Solution {
public:
    vector<int> twoSum(vector<int>& nums, int target) {
        int n = nums.size() - 1;
        int i, j, tmp;
        while (nums[n] >= target) n--;

        i = 0, j = n;
        while (i < j) {
            tmp = nums[i] + nums[j];
            if (tmp == target) {
                return vector<int>{nums[i], nums[j]};
            } else if (tmp > target) j--;
            else i++;
        }
        return vector<int>();
    }
};

剑指OFFER----面试题57. 和为s的两个数字

标签:size   com   return   get   试题   offer   tmp   class   i++   

原文地址:https://www.cnblogs.com/clown9804/p/12462327.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!