首页  >  文章  >  后端开发  >  php实现PageRank的实例

php实现PageRank的实例

不言
不言原创
2018-07-05 16:24:021511浏览

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

php简单实现PageRank算法

使用的web site模型

<?php
header("Content-type:text/html; charset=utf-8");
class PageRank{
    public $map = [];    
    public $rank = [];    
    public $inputList = []; // example web &#39;a&#39; (has input link): web &#39;b&#39;

    public $size;    
    public $keyValue = 0.85;    
    public function __construct(array $map) {
        $this->map = $map;        
        $this->size = count($this->map);
    }    //init rank score and transform &#39;map&#39; format to &#39;inputList&#39; 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 = [        &#39;a&#39; => [&#39;b&#39;, &#39;c&#39;, &#39;d&#39;],// web &#39;a&#39; (has out link): web &#39;b&#39;, web &#39;c&#39;, web &#39;d&#39;
        &#39;b&#39; => [&#39;a&#39;, &#39;d&#39;],        &#39;c&#39; => [&#39;b&#39;],        &#39;d&#39; => [&#39;b&#39;, &#39;c&#39;],
];$example = new PageRank($map);
$example->init();
echo &#39;<pre class="brush:php;toolbar:false">&#39;;for ($i = 0; $i < 10; $i++) {    
$example->caculate();
    var_dump($example->rank);
}

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

相关推荐:

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

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

以上是php实现PageRank的实例的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn