We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
현실 세계의 사물이나 개념 간의 연결 관계를 수학적 모델로 단순화 하여 표현한 것 ex ) 도로망, 가계도(트리), 웹 링크 연결 관계
in-degree : 유향 간선 그래프에서 정점에 들어 오는 간선의 수 out-degree : 유향 간선 그래프에서 정점에 나가는 간선의 수
자료구조에 그래프를 적절하게 담는 법을 알아야 합니다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
그래프란?
현실 세계의 사물이나 개념 간의 연결 관계를 수학적 모델로 단순화 하여 표현한 것
ex ) 도로망, 가계도(트리), 웹 링크 연결 관계
그래프 용어
무향간선 (Undirected Edge)
유향간선 (Directed Edge)
인접 (Adjacent)
부속 (Incident)
차수 (Degree)
다중 간선
Self-loop
경로 (Path)
회로 (Cycle)
연결(Connected)
그래프 종류
무향 그래프
유향 그래프
가중치 그래프(Weighted Graph)
정규 그래프(Regular Graph)
완전 그래프(Complete Graph)
그래프를 구현하는 법
자료구조에 그래프를 적절하게 담는 법을 알아야 합니다.
Edge List
The text was updated successfully, but these errors were encountered: