中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

leetCode 1. Two Sum 數組

發布時間:2020-04-11 04:00:16 來源:網絡 閱讀:333 作者:313119992 欄目:編程語言

1. 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.

Example:

Given nums = [2, 7, 11, 15], target = 9,

Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].

題目大意:

在一個數組中找出2個元素的和等于目標數,輸出這兩個元素的下標。

思路:

最笨的辦法嘍,雙循環來處理。時間復雜度O(n*n)。

代碼如下:

class Solution {
public:
    vector<int> twoSum(vector<int>& nums, int target) {
        vector<int> result;
        int i,j;
        for(i = 0; i < nums.size();i++)
        {
            for(j = i+1; j < nums.size();j++)
            {
                if(nums[i] + nums[j] == target)
                {
                    result.push_back(i);
				    result.push_back(j);
                    break;
                }
            }
        }
        return result;
    }
};

參考他人的做法:https://discuss.leetcode.com/topic/3294/accepted-c-o-n-solution

采用map的鍵值,把元素做鍵,把元素的下標做值。

vector<int> twoSum(vector<int> &numbers, int target)
{
    //Key is the number and value is its index in the vector.
    unordered_map<int, int> hash;
    vector<int> result;
    for (int i = 0; i < numbers.size(); i++) {
        int numberToFind = target - numbers[i];

            //if numberToFind is found in map, return them
        if (hash.find(numberToFind) != hash.end()) {
            
            result.push_back(hash[numberToFind]);
            result.push_back(i);            
            return result;
        }

            //number was not found. Put it in the map.
        hash[numbers[i]] = i;
    }
    return result;
}

2016-08-11 15:02:14

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阜康市| 邹平县| 瑞金市| 元氏县| 高青县| 临颍县| 克什克腾旗| 和平区| 长宁县| 名山县| 伊春市| 库车县| 温州市| 凤庆县| 镇江市| 淮北市| 东阳市| 麻栗坡县| 南陵县| 涞源县| 洪江市| 格尔木市| 高青县| 郸城县| 龙陵县| 瑞丽市| 基隆市| 巴彦淖尔市| 衡南县| 余庆县| 宜良县| 枣阳市| 闵行区| 乌恰县| 毕节市| 成武县| 买车| 即墨市| 韶山市| 唐海县| 区。|