forked from nonstriater/Learn-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
nonstriater
committed
Dec 1, 2015
1 parent
a2d615a
commit 47972d3
Showing
6 changed files
with
292 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
## 海量数据处理 | ||
|
||
|
||
海量处理问题常用的分析解决问题的思路是: | ||
|
||
* 分而治之/Hash映射 + hash统计/trie树/红黑树/二叉搜索树 + 堆排序/快速排序/归并排序 | ||
* 双层桶划分 | ||
* Bloom filter 、Bitmap | ||
* Trie树/数据库/倒排索引 | ||
* 外排序 | ||
* 分布处理之 Hadoop/Mapreduce | ||
|
||
|
||
### 分而治之/Hash映射 + hash统计/trie树/红黑树/二叉搜索树 + 堆排序/快速排序/归并排序 | ||
|
||
|
||
### 双层桶划分 | ||
|
||
|
||
### Bloom filter 、Bitmap | ||
|
||
|
||
### Trie树/数据库/倒排索引 | ||
|
||
|
||
### 外排序 | ||
|
||
|
||
### 分布处理之 Hadoop/Mapreduce | ||
|
||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.