1. Two Sum + 输入:一个整数数组nums[],一个整数target + 返回:数组中找出2个数,使其和为target,并返回两个数在数列中的索引。 比如: Given nums = [2, 7, 11, 15], target = 9, Because nums[0] + nums[1] ...
分类:
其他好文 时间:
2018-06-18 23:21:12
阅读次数:
230
Question "1. Two Sum" Solution 思路很简单这里就不说了,下面贴了不同的几个Java实现的时间与其他算法实现的时间的比较 这个是LeetCode的第一道题,也是我刷的第一道,刚一开始的Java实现 java public int[] twoSum(int[] nums, ...
分类:
其他好文 时间:
2018-06-17 01:06:00
阅读次数:
193
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 ...
分类:
其他好文 时间:
2018-06-13 00:15:13
阅读次数:
196
167. Two Sum II - Input array is sorted Given an array of integers that is already sorted in ascending order, find two numbers such that they add up t ...
分类:
其他好文 时间:
2018-06-07 19:27:09
阅读次数:
125
Medium! 题目描述: 给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组。 注意:答案中不可以包含重复的三元组。 解题思路: 这道题让我们求三数之和,比之前那道Two Sum要复杂一些 ...
分类:
其他好文 时间:
2018-06-03 12:45:59
阅读次数:
212
由于题目说了有且只有唯一解,可以考虑两遍扫描求解:第一遍扫描原数组,将所有的数重新存放到一个dict中,该dict以原数组中的值为键,原数组中的下标为值;第二遍扫描原数组,对于每个数nums[i]查看target-nums[i]是否在dict中,若在则可得到结果。 当然,上面两遍扫描是不必要的,一遍 ...
分类:
编程语言 时间:
2018-06-01 14:27:39
阅读次数:
188
给定数组和一个值,求数组中两个数和为该值时,两个数的标号。结果单一,不能选取同一个数两次。 思路: 因为没给数据范围,一开始想到的是类似桶排那样,开数组flag[],将给定的数组中出线的值在flag中标记。然后循环判断target-x是否存在。 实际上桶排也是一种hash,只不过hash函数简单,即 ...
分类:
其他好文 时间:
2018-05-31 19:25:14
阅读次数:
70
1 前言 之所以开始刷 LeetCode 上的算法题,一是快面临秋招,第二点是因为提升自己的编程能力,在博客上争取每天刷 5 道左右的算法题,坚持两个月,希望博友们监督。 这个系列打算用 C# 和 Java 编程,为什么用两门语言,因为经历春招,发现招 C# 的公司是在是太太太少了,只能在学 C# ...
分类:
编程语言 时间:
2018-05-26 19:35:23
阅读次数:
280
Description: Example: Solutions: 另外的做法本质相同: ...
分类:
其他好文 时间:
2018-05-20 14:18:02
阅读次数:
159
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 exa... ...
分类:
其他好文 时间:
2018-05-17 13:47:13
阅读次数:
131