
哈希映射
文章平均质量分 78
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 325. Maximum Size Subarray Sum Equals k(和为k的最长子数组)
原题网址:https://leetcode.com/problems/maximum-size-subarray-sum-equals-k/Given an array nums and a target value k, find the maximum length of a subarray that sums to k. If there isn't one, return 0原创 2016-04-26 06:10:18 · 2463 阅读 · 0 评论 -
LeetCode 37. Sudoku Solver(数读游戏)
原题网址:https://leetcode.com/problems/sudoku-solver/Write a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character '.'.You may assume that th原创 2016-05-20 10:40:25 · 444 阅读 · 0 评论 -
LeetCode 146. LRU Cache(LRU缓存)
原题网址:https://leetcode.com/problems/lru-cache/Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.get(key) - Get原创 2016-05-26 01:24:27 · 858 阅读 · 0 评论 -
LintCode Consistent Hashing II(一致性哈希算法II)
原题网址:http://www.lintcode.com/en/problem/consistent-hashing-ii/在 Consistent Hashing I 中我们介绍了一个比较简单的一致性哈希算法,这个简单的版本有两个缺陷:增加一台机器之后,数据全部从其中一台机器过来,这一台机器的读负载过大,对正常的服务会造成影响。当增加到3台机器的时候,每台服务器的负载量不原创 2016-06-24 06:19:02 · 2484 阅读 · 0 评论 -
LeetCode 75. Sort Colors(颜色排序)
原题网址:https://leetcode.com/problems/sort-colors/Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order re原创 2016-05-22 05:19:20 · 608 阅读 · 0 评论 -
LeetCode 49. Group Anagrams(分组同构异形词)
原题网址:https://leetcode.com/problems/anagrams/Given an array of strings, group anagrams together.For example, given: ["eat", "tea", "tan", "ate", "nat", "bat"], Return:[ ["ate", "eat","t原创 2016-05-21 06:11:47 · 1633 阅读 · 0 评论 -
LeetCode 355. Design Twitter(设计Twitter)
原题网址:https://leetcode.com/problems/design-twitter/Design a simplified version of Twitter where users can post tweets, follow/unfollow another user and is able to see the 10 most recent tweets in原创 2016-06-15 04:49:48 · 1007 阅读 · 0 评论 -
LeetCode 356. Line Reflection(线反射)
原题网址:https://leetcode.com/problems/line-reflection/Given n points on a 2D plane, find if there is such a line parallel to y-axis that reflect the given set of points.Example 1:Given po原创 2016-06-16 02:43:49 · 2146 阅读 · 0 评论 -
LeetCode 359. Logger Rate Limiter(日志漏桶)
原题网址:https://leetcode.com/problems/logger-rate-limiter/Design a logger system that receive stream of messages along with its timestamps, each message should be printed if and only if it is not p原创 2016-06-17 01:24:29 · 4119 阅读 · 0 评论 -
LeetCode 164. Maximum Gap(最大空隙)
原题网址:https://leetcode.com/problems/maximum-gap/Given an unsorted array, find the maximum difference between the successive elements in its sorted form.Try to solve it in linear time/space.原创 2016-05-25 01:40:27 · 697 阅读 · 0 评论 -
LeetCode 138. Copy List with Random Pointer(拷贝随机指针)
原题网址:https://leetcode.com/problems/copy-list-with-random-pointer/A linked list is given such that each node contains an additional random pointer which could point to any node in the list or nul原创 2016-05-27 00:22:32 · 527 阅读 · 0 评论 -
LeetCode 51. N-Queens(N皇后)
原题网址:https://leetcode.com/problems/n-queens/The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other.Given an integer n, retu原创 2016-05-21 06:21:29 · 559 阅读 · 0 评论 -
LintCode Memcache
原题网址:http://www.lintcode.com/en/problem/memcache/Implement a memcache which support the following features:get(curtTime, key). Get the key's value, return 2147483647 if key does not exis原创 2016-06-23 07:20:16 · 906 阅读 · 0 评论 -
454. 4Sum II
原题网址:https://leetcode.com/problems/4sum-ii/Given four lists A, B, C, D of integer values, compute how many tuples (i, j, k, l) there are such that A[i] + B[j] + C[k] + D[l] is zero.To make原创 2016-12-01 02:15:16 · 843 阅读 · 0 评论 -
LeetCode 447. Number of Boomerangs
原题网址:https://leetcode.com/problems/number-of-boomerangs/Given n points in the plane that are all pairwise distinct, a "boomerang" is a tuple of points (i, j, k) such that the distance between原创 2016-11-21 03:33:07 · 636 阅读 · 0 评论 -
LeetCode 36. Valid Sudoku(数独游戏)
原题网址:https://leetcode.com/problems/valid-sudoku/Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.The Sudoku board could be partially filled, where empty cells are fil原创 2016-05-20 10:38:02 · 715 阅读 · 0 评论 -
LeetCode 18. 4Sum(四数之和)
原题网址:https://leetcode.com/problems/4sum/Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array which原创 2016-05-19 06:31:51 · 765 阅读 · 0 评论 -
LeetCode 15. 3Sum(三数之和)
原题网址:https://leetcode.com/problems/3sum/Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of ze原创 2016-05-19 06:03:50 · 879 阅读 · 0 评论 -
LeetCode 105. Construct Binary Tree from Preorder and Inorder Traversal(从前序遍历和中序遍历构造二叉树)
原题网址:https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/Given preorder and inorder traversal of a tree, construct the binary tree.Note:You may assume t原创 2016-05-24 00:12:34 · 465 阅读 · 0 评论 -
LeetCode 106. Construct Binary Tree from Inorder and Postorder Traversal(根据中序遍历和后序遍历构造二叉树)
原题网址:https://leetcode.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/Given inorder and postorder traversal of a tree, construct the binary tree.Note:You may assume原创 2016-05-24 00:12:37 · 473 阅读 · 0 评论 -
LeetCode 290. Word Pattern(单词模式)
原题网址:https://leetcode.com/problems/word-pattern/Given a pattern and a string str, find if str follows the same pattern.Here follow means a full match, such that there is a bijection betwee原创 2016-04-16 00:51:13 · 613 阅读 · 0 评论 -
LeetCode 290. Word Pattern(单词模式)
原题网址:https://leetcode.com/problems/word-pattern/Given a pattern and a string str, find if str follows the same pattern.Here follow means a full match, such that there is a bijection betwee原创 2016-04-16 04:05:13 · 695 阅读 · 0 评论 -
LeetCode 347. Top K Frequent Elements(最频繁的K个元素)
原题网址:https://leetcode.com/problems/top-k-frequent-elements/Given a non-empty array of integers, return the k most frequent elements.For example,Given [1,1,1,2,2,3] and k = 2, return [1,2].原创 2016-05-18 08:58:53 · 995 阅读 · 1 评论 -
LeetCode 350. Intersection of Two Arrays II(数组交集)
原题网址:https://leetcode.com/problems/intersection-of-two-arrays-ii/Given two arrays, write a function to compute their intersection.Example:Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], retu原创 2016-05-25 01:35:00 · 1380 阅读 · 0 评论 -
LeetCode 170. Two Sum III - Data structure design(两数和)
原题网址:https://leetcode.com/problems/two-sum-iii-data-structure-design/Design and implement a TwoSum class. It should support the following operations: add and find.add - Add the number to an原创 2016-05-25 01:36:58 · 933 阅读 · 0 评论 -
LeetCode 288. Unique Word Abbreviation(单词缩写)
原题网址:https://leetcode.com/problems/unique-word-abbreviation/An abbreviation of a word follows the form . Below are some examples of word abbreviations:a) it --> it (no原创 2016-04-15 14:19:44 · 1001 阅读 · 0 评论 -
LeetCode 1. Two Sum(两数之和)
原题网址:https://leetcode.com/problems/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原创 2016-05-01 06:52:09 · 1006 阅读 · 0 评论 -
LeetCode 3. Longest Substring Without Repeating Characters(最长不重复子串)
原题网址:https://leetcode.com/problems/longest-substring-without-repeating-characters/Given a string, find the length of the longest substring without repeating characters.Examples:Given "ab原创 2016-05-01 07:12:41 · 480 阅读 · 0 评论 -
LeetCode 137. Single Number II(单个数字)
原题网址:https://leetcode.com/problems/single-number-ii/Given an array of integers, every element appears three times except for one. Find that single one.Note:Your algorithm should have a lin原创 2016-05-27 00:22:35 · 667 阅读 · 0 评论 -
LeetCode 133. Clone Graph(克隆图)
原题网址:https://leetcode.com/problems/clone-graph/Clone an undirected graph. Each node in the graph contains a label and a list of its neighbors.OJ's undirected graph serialization:Nodes ar原创 2016-05-27 00:22:58 · 877 阅读 · 0 评论 -
LeetCode 318. Maximum Product of Word Lengths(最大单词长度乘积)
原题网址:https://leetcode.com/problems/maximum-product-of-word-lengths/Given a string array words, find the maximum value of length(word[i]) * length(word[j]) where the two words do not share comm原创 2016-04-23 13:28:40 · 910 阅读 · 1 评论 -
LeetCode 219. Contains Duplicate II(检查重复)
原题网址:https://leetcode.com/problems/contains-duplicate-ii/Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = num原创 2016-05-06 07:16:54 · 416 阅读 · 0 评论 -
LeetCode 460. LFU Cache
原题网址:https://leetcode.com/problems/lfu-cache/Design and implement a data structure for Least Frequently Used (LFU) cache. It should support the following operations: getand put.get(key) -原创 2017-01-06 05:34:25 · 1769 阅读 · 0 评论