3

i am planning to implement page rank for my internal project and i got some thing using this article wikipedia

can any one tell me how can i implement it practically in java .. or the logic

saarvan
  • 39
  • 1
  • 1
  • 2

2 Answers2

7

Here is a Java implementation of PageRank: http://jung.sourceforge.net/doc/api/edu/uci/ics/jung/algorithms/importance/PageRank.html, which appears to be part of the JUNG project. This may help you :)

Chris Dennett
  • 22,412
  • 8
  • 58
  • 84
  • yes i checked it but i need to know about constructing graphs in jung i have an db with url-->outboundlinks-->inboundlinks how can i construsct an graph using JUNG – saarvan Jan 24 '11 at 17:02
  • You represent the individual pages (the set of unique links), and then connect them together using the links. I'm not sure what inbound links are, but I assume it's some URL/URI conversion that happens. The nodes are then ranked using the algorithm. – Chris Dennett Jan 24 '11 at 18:04
1

check here at 14.3 paragraph. ;)

http://www.cs.cornell.edu/home/kleinber/networks-book/networks-book-ch14.pdf

a.s.p.
  • 328
  • 1
  • 3
  • 12