[prev] 48 [next]

PageRank (cont)

Costs for computing PageRank for each representation:

Representation  linkExists(v,w)  Cost
Adj. matrix  edge[v][w]  V.1
Adj. lists  search(w,list[v])  V.(E/V) = E
Adj. sets  isElem(w,set[v])  V.log(E/V)

Not feasible ... V4×1010 ⇒ matrix has 1021 cells

I.e. we can't store the entire web as a Graph structure

So how to really do it?