这篇用来放做的leetcode题目 1.Two Sum 用的暴力的O(n2) class Solution { public: vector<int> twoSum(vector<int>& nums, int target) { vector<int> ans; for (int i = 0;i ...
分类:
其他好文 时间:
2018-02-11 23:41:52
阅读次数:
204
3Sum 题解 原创文章,拒绝转载 题目来源:https://leetcode.com/problems/3sum/description/ Description Given an array S of n integers, are there elements a, b, c in S suc ...
分类:
其他好文 时间:
2018-01-27 13:48:15
阅读次数:
122
原题如下: 思路:将nums放到一个map<int,int>中,其中,键是nums中元素,值对应其下标。然后遍历nums,取nums中一个值nums[i],接着用target减去它,最后再map中找差值map[num[i]]。如果发现差值,则返回i,map[num[i]]。 代码如下: ...
分类:
其他好文 时间:
2018-01-23 13:03:46
阅读次数:
134
凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/ Question: Answer: ...
分类:
其他好文 时间:
2018-01-06 23:23:26
阅读次数:
181
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 n ...
分类:
其他好文 时间:
2018-01-06 16:01:58
阅读次数:
139
汇总贴 56. Two Sum【easy】 167. Add Two Numbers【easy】 ...
分类:
其他好文 时间:
2018-01-06 15:57:38
阅读次数:
99
Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number. The function ...
分类:
其他好文 时间:
2018-01-04 16:27:39
阅读次数:
151
1.题目及翻译 给定一个整数数组,返回两个数字的索引,使它们加起来成为一个特定的目标。 您可能会认为每个输入都只有一个解决方案,而且您可能不会使用相同的元素两次。 2.思路 其实不算真的很明白题目的意思,只是凭借着自己的理解,写了种解法,效率不高。 3.解法 1)自己 ...
分类:
其他好文 时间:
2017-12-25 00:52:49
阅读次数:
125
题目:https://leetcode.com/problems/two-sum/description/ stl map代码: ...
分类:
编程语言 时间:
2017-12-15 21:35:27
阅读次数:
229
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 ex ...
分类:
其他好文 时间:
2017-12-12 20:47:11
阅读次数:
164