zoukankan      html  css  js  c++  java
  • leetcode2 Two Sum II – Input array is sorted

      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;

                     }

            }

    }

  • 相关阅读:
    c# winform连接sql2000实例
    项目部署后水晶报表显示出错
    获取父窗体的工作区域
    字符转换 btye[] 和string
    水晶报表 详细资料全部显示
    c# 获取和取消本地打印队列
    zoj 3329 One Person Game(数学期望)
    poj 1753 Flip Game(枚举)
    SRM 556 DIV2
    zoj 2671 Cryptography(矩阵+线段树)
  • 原文地址:https://www.cnblogs.com/whowhoha/p/5743282.html
Copyright © 2011-2022 走看看