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

leetcode2 Two Sum II – Input array is sorted

时间:2016-08-06 09:52:18      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

  Two Sum II – Input array is sorted

    whowhoha@outlook.com

Question:

Similar to Question [1. Two Sum], except that the input array is already sorted in

ascending order.

同上题:先排序,然后从开头和结尾同时向中间查找,原理也比较简单。O(nlogn) runtime, O(1) space

      vector<int> twoSumSored(vector<int>& nums, int target){

        vector<int> vecCopy(nums);

        int i=0,n=2,l=0,r = nums.size()-1;

        sort(vecCopy.begin(),vecCopy.end());

        int j=nums.size()-1;

        while(i<j)

        {

                 int sum = nums[i]+nums[j];

                 if (sum <target)

                 {

                         i++;

                 }

                 else if (sum > target)

                 {

                         j--;

                 }

                 else

                 {

                         vector<int> index;

                         index.push_back(i+1);

                         index.push_back(j+1);

                         return index;

                 }

        }

}

leetcode2 Two Sum II – Input array is sorted

标签:

原文地址:http://www.cnblogs.com/whowhoha/p/5743282.html

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