1. Two Sum(两数之和) 题目: 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 示例: 思路: 简单的遍历即可,考虑到复杂度可以借助 ...
分类:
编程语言 时间:
2019-05-14 11:06:52
阅读次数:
151
Algorithms: https://leetcode-cn.com/problems/two-sum/ Review: https://www.infoq.cn/article/EafgGJEtqQTAa_0sP62N Q版本,慢慢雏形已经出来。 Tips: c++11 : 1.nullptr ...
分类:
其他好文 时间:
2019-05-13 01:13:31
阅读次数:
146
题目 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 ...
分类:
其他好文 时间:
2019-05-11 10:59:23
阅读次数:
128
1. 原始题目 给定一个已按照升序排列 的有序数组,找到两个数使得它们相加之和等于目标数。 函数应该返回这两个下标值 index1 和 index2,其中 index1 必须小于 index2。 说明: 返回的下标值(index1 和 index2)不是从零开始的。 你可以假设每个输入只对应唯一的答 ...
分类:
其他好文 时间:
2019-05-01 12:11:26
阅读次数:
140
607. Two Sum III - Data structure design (查找问题:从 map 中查找一个元素) 双指针:用一个指针遍历 map 所有元素,用另一个指针在 map 中找 remain https://www.lintcode.com/problem/two-sum-iii- ...
分类:
其他好文 时间:
2019-04-21 09:21:59
阅读次数:
166
我不懂有没有收藏之类的功能,收藏别人的解法。 tql 有一些答案都用到了iterator迭代器 http://www.cplusplus.com/reference/iterator/ ...
分类:
其他好文 时间:
2019-04-18 20:23:11
阅读次数:
149
"167. Two Sum II Input array is sorted" 分析:简单题,双指针,如果比target大,则说明j要变小,如果比target小,说明i要变大 "215. Kth Largest Element in an Array" 分析:快排思想,不过递归的时候根据当前位置和k ...
分类:
其他好文 时间:
2019-04-15 21:38:56
阅读次数:
176
refer to https://blog.csdn.net/linfeng886/article/details/79772348 Description Given an array of integers, return indices of the two numbers such that ...
分类:
编程语言 时间:
2019-04-06 22:54:42
阅读次数:
204
LeetCode one Two Sum (JAVA) 简介:给定一个数组和目标值,寻找数组中符合求和条件的两个数. 问题详解: 给定一个数据类型为int的数组,一个数据类型为int的目标值target,要求是在数组中寻求两个数字,使得两个数求和的值等于给定的target,要求以数组返回符合条件的索 ...
分类:
其他好文 时间:
2019-04-05 18:23:38
阅读次数:
116
题目来源:https://leetcode-cn.com/problems/two-sum-iv-input-is-a-bst/ 给定一个二叉搜索树和一个目标结果,如果 BST 中存在两个元素且它们的和等于给定的目标结果,则返回 true。 测试用例中的树按层遍历为[5,3,6,2,4,null,7 ...
分类:
其他好文 时间:
2019-04-05 14:27:06
阅读次数:
292