首页 > 编程 > PHP > 正文

php实现PageRank的实例

2020-03-22 17:47:21
字体:
来源:转载
供稿:网友

这篇文章主要介绍了关于php实现PageRank的实例,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

php简单实现PageRank算法

使用的web site模型

 ?phpheader( Content-type:text/html; charset=utf-8 class PageRank{ public $map = [];  public $rank = [];  public $inputList = []; // example web a (has input link): web b  public $size;  public $keyValue = 0.85;  public function __construct(array $map) { $this- map = $map;  $this- size = count($this- map); } //init rank score and transform map format to inputList format public function init() $size = $this- size;  foreach ($this- map as $key = $value) {  $this- inputList[$key] = []; } foreach ($this- map as $key = $value) {  $this- rank[$key] = 1/$size;  foreach ($value as $v) {  if (empty($this- inputList[$v])) {  $this- inputList[$v][] = $key; } else { array_push($this- inputList[$v], $key); } public function caculate() $tmp = $this- rank;  $keyValue = $this- keyValue;  $size = $this- size;  foreach ($this- inputList as $key = $value) {  $score = (1 - $keyValue)/$size;  foreach ($value as $v) {  $cc = count($this- map[$v]);  if ($cc) {  $score += ($keyValue*(1/$cc * $this- rank[$v])); } $tmp[$key] = $score; } $this- rank = $tmp;
}$map = [ a = [ b , c , d ],// web a (has out link): web b , web c , web d b = [ a , d ], c = [ b ], d = [ b , c ],];$example = new PageRank($map);$example- init();echo pre for ($i = 0; $i $i++) { $example- caculate(); var_dump($example- rank);}

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP !

相关推荐:

php 通过html-table形式完成excel下载的功能实现

php身份证识别ORC的方法实现

以上就是php实现PageRank的实例的详细内容,PHP教程

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表