A page rank calculator implemented in python
You can try this program withWebgraph from the Google programming contest 2002 available at:
http://snap.stanford.edu/data/web-Google.html
run the code with the command:
python pagerank.py .\web-Google.txt
You can try use this program to calculate the page rank of other datasets, but please rememeber to this program read data starts from row four as this program is written mainly aiming at the google 2002 dataset
The top 10 node with highest page rank will be printed in the terminal, the page rank of all nodes can be found in the file pagerank_result.txt
Definition of Pagerank:
https://en.wikipedia.org/wiki/PageRank
Have fun XD