
哈希
文章平均质量分 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 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 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 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 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 47. Permutations II(排列)
原题网址:https://leetcode.com/problems/permutations-ii/Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2] have the followi原创 2016-05-21 05:23:53 · 755 阅读 · 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 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 316. Remove Duplicate Letters(删除重复字母)
原题网址:https://leetcode.com/problems/remove-duplicate-letters/Given a string which contains only lowercase letters, remove duplicate letters so that every letter appear once and only once. You mus原创 2016-04-23 05:51:58 · 2254 阅读 · 1 评论 -
LintCode Consistent Hashing(一致性哈希算法)
原题网址:http://www.lintcode.com/en/problem/consistent-hashing/一般的数据库进行horizontal shard的方法是指,把 id 对 数据库服务器总数 n 取模,然后来得到他在哪台机器上。这种方法的缺点是,当数据继续增加,我们需要增加数据库服务器,将 n 变为 n+1 时,几乎所有的数据都要移动,这就造成了不 consist原创 2016-06-23 05:16:18 · 2502 阅读 · 0 评论 -
LeetCode 373. Find K Pairs with Smallest Sums
原题网址:https://leetcode.com/problems/find-k-pairs-with-smallest-sums/You are given two integer arrays nums1 and nums2 sorted in ascending order and an integer k.Define a pair (u,v) which consists原创 2016-07-14 00:51:28 · 800 阅读 · 0 评论 -
LeetCode 438. Find All Anagrams in a String
原题网址:https://leetcode.com/problems/find-all-anagrams-in-a-string/Given a string s and a non-empty string p, find all the start indices of p's anagrams in s.Strings consists of lowercase Engl原创 2016-10-26 05:08:28 · 700 阅读 · 0 评论 -
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 217. Contains Duplicate(检查重复)
原题网址:https://leetcode.com/problems/contains-duplicate/Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in原创 2016-05-06 04:56:24 · 505 阅读 · 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 260. Single Number III
原题网址:https://leetcode.com/problems/single-number-iii/Given an array of numbers nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the tw原创 2016-04-09 15:46:39 · 516 阅读 · 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 187. Repeated DNA Sequences(重复DNA序列)
原题网址:https://leetcode.com/problems/repeated-dna-sequences/All DNA is composed of a series of nucleotides abbreviated as A, C, G, and T, for example: "ACGAATTCCG". When studying DNA, it is someti原创 2016-05-25 01:35:57 · 637 阅读 · 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 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 128. Longest Consecutive Sequence(最长连续序列)
原题网址:https://leetcode.com/problems/longest-consecutive-sequence/Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given [100, 4,原创 2016-05-27 00:26:15 · 846 阅读 · 0 评论 -
LeetCode 311. Sparse Matrix Multiplication(稀疏矩阵相乘)
原题网址:https://leetcode.com/problems/sparse-matrix-multiplication/Given two sparse matrices A and B, return the result of AB.You may assume that A's column number is equal to B's row number.原创 2016-04-21 08:12:23 · 2919 阅读 · 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 评论 -
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 评论