- 博客(2)
- 收藏
- 关注
翻译 Consistent Hash Ring【一致性哈希】
引言一致性哈希算法最初发表在 David Karger 等人完成的论文Consistent hashing and random trees: Distributed caching protocols for relieving hot spots on the World Wide Web (1997)上。它在许多分布式存储系统中得到应用,像Amazon Dynamo,memcache
2016-02-29 10:10:07 1788
原创 【Leetcode】3. Longest Substring Without Repeating Characters
题意:给你一个字符串,要你求出串内不含重复字符的最长一个子串的长度。坑点:1.字符可能不止是英文字母2.可能是空串思路:使用尺取法+哈希表/map 等快速查找结构,从头到尾扫一遍即可。代码:class Solution {public: int lengthOfLongestSubstring(string s) {
2016-01-11 18:28:43 209
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人