• 【LeetCode】001. Two Sum


    题目:

    Given an array of integers, return indices of the two numbers such that they add up to a specific target.

    You may assume that each input would have exactly one solution, and you may not use the sameelement twice.

    Example:

    Given nums = [2, 7, 11, 15], target = 9,
    
    Because nums[0] + nums[1] = 2 + 7 = 9,
    return [0, 1].

    题解:

    Solution 1 (my submmision)

    class Solution {
    public:
        vector<int> twoSum(vector<int>& nums, int target) {
            vector<int> res;
            unordered_map<int, int> map;
            for(int i = 0; i < nums.size(); ++i){
                int val = target - nums[i];
                if(map.find(val) != map.end()){
                    res.push_back(map[val]);
                    map[nums[i]] = i;
                    res.push_back(map[nums[i]]);
                    break;
                }
                map[nums[i]] = i;
            }
            return res;
        }
    };

    Solution 2

    class Solution {
    public:
        vector<int> twoSum(vector<int>& nums, int target) {
            vector<int> res;
            unordered_map<int, int> map;
            for(int i = 0; i < nums.size(); ++i){
                if(map.find(nums[i]) == map.end()){
                    map[target - nums[i]] = i;
                } else {
                    res.push_back(map[nums[i]]);
                    res.push_back(i);
                    break;
                }
            }
            return res;
        }
    };

    相当于建立数组中每个元素的相对应的加数的集合,这个加数对应了原数组中元素的坐标。

  • 相关阅读:
    tf.placeholder函数说明
    网易雷火 游戏研发一面 5.7
    【python3】with的用法
    一分钟理解softmax函数(超简单)
    网易雷火 笔试 4.25
    cun
    HDU-2045-RPG上色(递推)
    HDU-2050-折线分割平面 (递推)
    POJ-2389-Bull Math(高精度乘法)
    HDU-1002-A + B Problem II(高精度加法)
  • 原文地址:https://www.cnblogs.com/Atanisi/p/7467951.html
Copyright © 2020-2023  润新知