8

这是 Hacker News 排名算法,我认为这是一种简单的排名方式,特别是如果用户对项目进行投票,但我真的不明白,这可以转换为 PHP,所以我可以完全理解吗?

; Votes divided by the age in hours to the gravityth power.
; Would be interesting to scale gravity in a slider.


(= gravity* 1.8 timebase* 120 front-threshold* 1
           nourl-factor* .4 lightweight-factor* .17 gag-factor* .1)

        (def frontpage-rank (s (o scorefn realscore) (o gravity gravity*))
          (* (/ (let base (- (scorefn s) 1)
                  (if (> base 0) (expt base .8) base))
                (expt (/ (+ (item-age s) timebase*) 60) gravity))
             (if (no (in s!type 'story 'poll))  .8
                 (blank s!url)                  nourl-factor*
                 (mem 'bury s!keys)             .001
                                                (* (contro-factor s)
                                                   (if (mem 'gag s!keys)
                                                        gag-factor*
                                                       (lightweight s)
                                                        lightweight-factor*
                                                       1)))))
4

2 回答 2

12

直接从http://amix.dk/blog/post/19574翻过来,用 Python 翻译成 PHP:

function calculate_score($votes, $item_hour_age, $gravity=1.8){
    return ($votes - 1) / pow(($item_hour_age+2), $gravity);
}
于 2010-10-20T19:19:44.173 回答
6

有关于该算法如何工作的文章。快速搜索发现:黑客新闻排名算法的工作原理

Lisp 可以使事情看起来比实际更复杂。

于 2010-10-20T19:15:45.167 回答