https://leetcode.com/problems/two-sum/description/ 第一种方法 遍历查找 第二种:哈希 待完成 ...
分类:
其他好文 时间:
2018-09-06 03:03:05
阅读次数:
154
早就想刷LeetCode了,但一直在拖,新学期开学,开始刷算法。 我准备从Python和C++两种语言刷。一方面我想做机器学习,以后用Python会比较多,联系一下。另一方面C++或者C语言更接近底层,能够让我更深入的理解算法。 1、题目 Given an array of integers, re ...
分类:
其他好文 时间:
2018-09-05 00:57:39
阅读次数:
284
【学到的知识点——HashMap】1、HashMap是链表+数组的组合方式(结合模型来思考) 数组寻址容易,插入和删除困难 链表正好相反 HashMap正好将二者互补了一下2、对一个HashMap键值对的查找,是分为四步的 1)先根据key值计算出hash值以及h值(h值是java实现中处理得到的更 ...
分类:
其他好文 时间:
2018-09-04 01:48:40
阅读次数:
105
【更多参考】 LeetCode算法 每日一题 1: Two Sum ----> 更多参考【今日头条--松鼠游学】 史上最全的五大算法总结 ...
分类:
编程语言 时间:
2018-09-01 16:24:24
阅读次数:
119
题目: Given an array of integers, return indices of the two numbers such that they add up to a specific target. 给定一个整数数组,返回两个数字的索引,使它们相加到特定目标。 You may a ...
分类:
其他好文 时间:
2018-08-31 11:46:19
阅读次数:
123
Problem Description: Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that eac ...
分类:
编程语言 时间:
2018-08-24 23:41:35
阅读次数:
196
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 wou ...
分类:
其他好文 时间:
2018-08-23 16:52:04
阅读次数:
190
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-08-19 14:47:18
阅读次数:
194
Question "167. Two Sum II Input array is sorted" Solution 题目大意:和Two Sum一样,这里给出的数组是有序的 思路:target nums[i],这样就实现了降维了 Java实现: ...
分类:
其他好文 时间:
2018-08-16 20:54:00
阅读次数:
139
Given a Binary Search Tree and a target number, return true if there exist two elements in the BST such that their sum is equal to the given target. E ...
分类:
其他好文 时间:
2018-08-15 01:21:32
阅读次数:
145