이 글에서는 특정 참고값을 가지고 있는 PageRank를 PHP로 구현하는 방법에 대한 예제를 주로 소개합니다. 이제 필요한 친구들이 참고할 수 있도록 공유하겠습니다.
php 간단한 구현 PageRank Algorithm#🎜 🎜#
<?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 class="brush:php;toolbar:false">';for ($i = 0; $i < 10; $i++) { $example->caculate(); var_dump($example->rank); }
php html 테이블 형식으로 엑셀 다운로드 기능 완성
#🎜🎜 #
위 내용은 PageRank를 구현하는 PHP의 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!