I'm searching for the Big-O complexity of PageRank algorithm.
I hardly could found anything, I just found O(n+m)
( n
- number of nodes, m
- number of arcs/edges) but I didn't believe this complexity by now.
I think it is missing the convergence criteria. I didn't think that this is a constant, I think the convergence depends on the graph diameter. It might be enough to have the Big-O for one iteration, then convergence is not important.
Nevertheless PageRank need to touch every node and aggregate every incoming rank, so I expected a runtime of O(n * m)
.
Did I miss something? Did anyone know a valuable source for the Big-O complexity of PageRank?
Thanks in advance.