목록컴퓨터 과학(CS, Computer Science)/알고리즘(Algorithm) (2)
HiEarth_HH's Blog
🌐 World Wide Web (WWW)The World Wide Web is an information system that enables content sharing over the Internet through user-friendly means, allowing documents and other web resources to be accessed over the Internet according to specific rules of the Hypertext Transfer Protocol (HTTP). Key Features:Hypertext: Utilizes hyperlinks to connect documents, enabling easy navigation between related ..
PageRank 알고리즘은 구글의 공동 창립자인 래리 페이지(Larry Page)와 세르게이 브린(Sergey Brin)이 1998년에 개발한 웹페이지 중요도 평가 알고리즘입니다. 이 알고리즘은 웹페이지 간의 링크 구조를 분석하여 각 페이지의 상대적 중요도를 계산하며, 구글 검색 결과의 순위 결정에 핵심적인 역할을 했습니다.🔍 PageRank의 핵심 개념PageRank는 웹을 하나의 거대한 그래프로 보고, 각 웹페이지를 노드(node), 하이퍼링크를 엣지(edge)로 간주합니다. 기본 아이디어는 "중요한 페이지는 다른 중요한 페이지로부터 많은 링크를 받는다"는 것입니다. 즉, 단순히 링크 수가 많은 페이지뿐만 아니라, 신뢰도 높은 페이지로부터 링크를 받은 페이지가 더 높은 순위를 갖게 됩니다 .Ve..