当前位置:Gxlcms > PHP教程 > php实现PageRank的实例

php实现PageRank的实例

时间:2021-07-01 10:21:17 帮助过:4人阅读

这篇文章主要介绍了关于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 '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 < 10; $i++) {    
$example->caculate();
    var_dump($example->rank);
}

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

相关推荐:

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

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

以上就是php实现PageRank的实例的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行