
大数据hadoop
文章平均质量分 82
我们家没有秃头的基因
这个作者很懒,什么都没留下…
展开
-
从HDFS读文件,进行Hash based group by,再写入Hbase
/** * First assignment for Big data systems and big data analysis * @author LMC * @version V2.0 * @date: 2018.04.23 */ import java.io.*; import java.io.BufferedReader; import java.io.IOException; ...原创 2018-05-18 13:32:31 · 524 阅读 · 0 评论 -
PageRankVertex
1.PageRank算法介绍PageRank,网页排名算法,是一种根据网页之间相互的超链接计算的技术,Google用它来体现网页的相关性和重要性,在搜索引擎优化操作中是经常被用来评估网页优化的成效因素之一。PageRank通过网络超链接关系来确定一个页面的等级。Google把从A页面到B页面的链接解释为A页面给B页面投票,Google根据投票来源(甚至来源的来源,即链接到A页面的页面)和投票目标的...原创 2018-05-18 13:41:51 · 362 阅读 · 0 评论 -
SSSP算法-单源最短路径算法
#include <stdio.h> #include <string.h> #include <math.h> #include <limits> #include <iostream> using namespace std; #include "GraphLite.h" #define VERTEX_CLASS_NAME(na...原创 2018-05-18 13:47:47 · 4721 阅读 · 0 评论