91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

宁津县| 兴宁市| 延庆县| 奎屯市| 瓮安县| 奉贤区| 阜新| 镇康县| 宜都市| 海宁市| 岗巴县| 三门县| 丹寨县| 广西| 平邑县| 汉源县| 怀安县| 平原县| 舞阳县| 西和县| 策勒县| 平遥县| 天祝| 甘南县| 金华市| 平陆县| 曲阳县| 昌黎县| 永寿县| 大渡口区| 潢川县| 崇明县| 昌吉市| 尤溪县| 隆尧县| 汉源县| 清水河县| 永顺县| 鄂托克前旗| 新宾| 南陵县|