HITS Algorithm Question and Solution
HITS Algorithm Question and Solution
Question:
Consider the following directed graph with 4 web pages (A, B, C, and D):
- A links to B and C
- B links to C and D
- C links to A
- D links to C
Solution:
Initial Scores:
Authority(A) = 1, Hub(A) = 1
Authority(B) = 1, Hub(B) = 1
Authority(C) = 1, Hub(C) = 1
Authority(D) = 1, Hub(D) = 1