自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(18)
  • 收藏
  • 关注

转载 图算法相关的论文

图算法的一些论文###0. 最普通的模型MapReducePregelPowerGraphGraphLabGraphXGiraphGraphChi###1. 改进的模型主要针对的问题:vertex/edge-centric 收敛的慢,局部性信息丢失严重Zhou Y, ...

2017-04-10 21:46:00 470

转载 Graph Partitioner

一. Graph Voronoi Diagram Partitioner[1]The GVD computation can be easily implemented in the vertex-centric computing model, by performing multi-s...

2016-05-26 14:51:00 179

转载 How to make your vim support scala syntax highligh

vim-scalahttps://github.com/derekwyatt/vim-scalaThis is a "bundle" for Vim that builds off of the initial Scala plugin modulesby Stefan Matthias...

2016-05-22 14:43:00 130

转载 论文阅读 -- Optimizing Graph Algorithms on Pregel-like

Optimizing Graph Algorithms on Pregel-like SystemsSemih Salihoglu Stanford Universitysemih@cs.stanford.eduJennifer Widom Stanford Universitywid...

2016-05-17 14:24:00 123

转载 阅读论文 --- GPS: A Graph Processing System∗

Highlight, page 1GPS is similar to Google’s proprietary Pregel system, with three new features: (1) an extended API to make global computation...

2016-05-16 22:12:00 209

转载 Graph Coarsening And multi-source BFS

Coarsening[何慧, 胡铭曾, 张宏莉, 裴晓峰, & 杨志. (2005). 网络拓扑图多级分割塌缩阶段算法改进. 华中科技大学学报:自然科学版, 33(S1), 82-85.]图塌缩阶段是将图中联系较强部分粘合起来作为一个整体, 并暂时从图中隐藏掉.这样经过多次塌缩...

2016-05-16 13:49:00 955

转载 论文阅读 - Blogel: A Block-Centric Framework for Distr

Blogel: A Block-Centric Framework for Distributed Computation on Real-World Graphs如何分块?Voronoi Digram 划分The GVD computation can be easily impl...

2016-05-16 11:18:00 359

转载 [图算法]及[迭代算法]合集

一 图算法合集1 广度优先遍历 - BFS#include<iostream>#include<queue>#include<stack>#include<stdlib.h>#define MAX 100using namespac...

2016-05-15 14:30:00 971

转载 论文阅读 - Optimizing Graph Algorithms on Pregel-like

Highlight, page 1Standard graph algorithms in this setting can incur unnecessary in- efficiencies such as slow convergence or high communication...

2016-05-15 08:55:00 184

转载 论文阅读 - Thinking Like a Vertex: A Survey of Vertex-

**Thinking Like a Vertex: A Survey of Vertex-Centric Frameworks for Large-Scale Distributed Graph Processing**ROBERT RYAN MCCUNE, TIM WENINGER, an...

2016-05-14 19:52:00 372

转载 vim之syntastic插件使用和配置

syntastic的安装步骤很简单,网上也很多,这里不再赘述;如果使用c++11及以上的语法标准,如auto等,syntastic会非常友好的给出一个提醒,这个提醒和编译时,没有指定-std=c++11的提醒一样,这个时候需要指定syntastic编译时,指定的编译选项, 可通过修改.vi...

2016-03-27 18:05:00 872

转载 运行Spark例子程序

一、安装和配置下载并解压Spark到指定目录,如果没有安装JDK、Scala,需要先下载JDK、Scala到指定目录,并设置SPKARK_HOME(JAVA_HOME、SCALA_HOME).二、启动Spark或Spark集群如果只是在单节点上运行Spark,无需启动Spark,直接按『...

2016-02-24 10:34:00 242

转载 fork分支与上游分支同步

在 Fork 的代码库中添加上游代码库的 remote 源,该操作只需操作一次即可。如: 其中# upstream 表示上游代码库名, 可以任意。git remote add upstream https://github.scm.corp.ebay.com/montage/front...

2015-12-10 17:40:00 188

转载 GraphLab与Pregel对比

一、GraphLab 示例1:GraphLab完成对V0邻接顶点的求和计算 示例中,需要完成对V0邻接顶点的求和计算,串行实现中,V0对其所有的邻接点进行遍历,累加求和。而GraphLab中,将顶点V0进行切分,将V0的边关系以及对应的邻接点部署在两台处理器上,各台机器上并行进行部分...

2015-11-01 23:46:00 277

转载 strsplit

function terms = strsplit(s, delimiter)%STRSPLIT Splits a string into multiple terms%% terms = strsplit(s)% splits the string s into mu...

2013-03-31 00:46:00 177

转载 图片质量检测

1. 三通道图片转换为向量 I=imread('aa.file') [x,y,z] = size(I) A=reshape(I, 1, x*y*z) 2.计算vector中个数值所占比例: ratio_tab=talulate(A) ...

2013-03-30 16:38:00 188

转载 matlab plot three dimensional matrix

This question is very similar tothis question. You might want to check it out. UPDATE: Suppose you have a 3D matrixA: A = rand(100,100,2...

2013-02-20 22:04:00 100

转载 C++经典机试题目

1. 表达式求值 - 中缀转后缀 #include <iostream>#include <stack>using namespace std;int Priority(char oper){ switch(oper) { case '(':...

2013-01-18 22:13:00 592

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除