zoukankan      html  css  js  c++  java
  • leetcode Two Sum

    Given an array of integers, 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.

    Input: numbers={2, 7, 11, 15}, target=9
    Output: index1=1, index2=2

    第一种方案是两重循环,时间复杂度为O(n^2)

    public class Solution {
         public int[] twoSum(int[] numbers, int target) {
             // Start typing your Java solution below
             // DO NOT write main() function
             
             //int index1 = 0;
             //int index2 = 0;
             
             int[] results = new int[2];
             
             for(int i = 0; i < numbers.length - 1; i++){
                 for(int j = i + 1; j < numbers.length; j++){
                     if(numbers[i] + numbers[j] == target){
                         results[0] = i + 1;
                         results[1] = j + 1;
                         return results;
                     }
                 }
             }
             return results;
             
         }
     }
     1 class Solution {
     2 public:
     3     vector<int> twoSum(vector<int> &numbers, int target) {
     4         vector<int>::iterator first, second;
     5         first = numbers.begin();
     6 
     7         vector<int> indics;
     8         for(;first < numbers.end() - 1; first ++) {
     9             for(second = first + 1; second < numbers.end(); second ++) {
    10                 if(*first + *second == target) {
    11                     indics.push_back((first - numbers.begin()) + 1);
    12                     indics.push_back((second - numbers.begin()) + 1);
    13                 }
    14             }
    15         }        
    16         
    17         return indics;
    18     }
    19 };

    第二种解决方法:hash 将所有元素都遍历一遍放入Map中,再扫描一遍即可 时间复杂度O(n)

     1 class Solution {
     2 public:
     3     vector<int> twoSum(vector<int> &numbers, int target) {
     4         // Start typing your C/C++ solution below
     5         // DO NOT write int main() function
     6         map<int, int> mapping;
     7         vector<int> result;
     8         for(int i = 0; i < numbers.size(); i++){
     9             mapping[numbers[i]] = i;
    10         }
    11 
    12         for(int i = 0; i < numbers.size(); i++){
    13             int searched = target - numbers[i];
    14             if(mapping.find(searched) != mapping.end()){
    15                 result.push_back(i + 1);
    16                 result.push_back(mapping[searched] + 1);
    17                 break;
    18             }
    19         }
    20         return result;
    21 
    22     }
    23 };
     1 class Solution {
     2 public:
     3     vector<int> twoSum(vector<int> &numbers, int target) {
     4         vector<int>::iterator first, second;
     5         first = numbers.begin();
     6         
     7         map<int, int> mapping;
     8         for(;first < numbers.end(); first ++) {
     9             mapping[*first] = (first - numbers.begin()) + 1;
    10         }
    11         
    12         map<int, int>::iterator it;
    13         vector<int> indics;
    14         for(first = numbers.begin(); first < numbers.end(); first ++) {
    15             int remain = target - *first;
    16             it = mapping.find(remain);
    17             if(it != mapping.end() && (first - numbers.begin() + 1) != it->second) {
    18                 indics.push_back(first - numbers.begin() + 1);
    19                 indics.push_back(it->second);
    20                 break;
    21             }
    22         }
    23         
    24         return indics;
    25     }
    26 };
  • 相关阅读:
    HTML5语音合成Speech Synthesis API简介
    数据库两大神器【索引和锁】
    进程、进程组、作业、会话
    linux的会话、进程、进程组等概念
    linux命令eval的用法
    配置mutt
    Shell 实现多任务并发
    利用linux mutt 发送邮件(在Shell脚本中使用比较方便)
    Linux-Shell-使用mkfifo实现多任务并发及并发数控制
    js逆向笔记
  • 原文地址:https://www.cnblogs.com/feiling/p/3137826.html
Copyright © 2011-2022 走看看