| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
- 티스토리챌린지
- 오블완
- 배열
- array
- assignment operator
- 함수
- Object Oriented Programming
- function
- 포인터
- 반복문
- baekjoon
- Python
- programming
- Pre-processing
- C++
- Deep Learning
- OOP
- 알고리즘
- pointer
- pass by reference
- predictive analysis
- Class
- vscode
- const
- Data Science
- 문자열
- 파이썬
- string
- 백준
- raw data
- Today
- Total
목록2025/05/26 (4)
Channi Studies
A weighted graph associates a weight with each edge.A graph edge's weight, or cost, represents some numerical value between vertex items, such as flight cost between airports, connection speed between computers, or travel time between cities. A weighted graph may be directed or undirected. In a weighted graph, the path length is the sum of the edge weights in the path. The cycle length is t..
A directed graph, or digraph, consists of vertices connected by directed edges. A directed edge is a connection between a starting vertex and a terminating vertex. In a directed graph, a vertex Y is adjacent to a vertex X, if there is an edge from X to Y. Many graphs are directed, like those representing links between web pages, maps for navigation, or college course prerequisites. From above di..
Breadth-First SearchAn algorithm commonlyu must visit every vertex in a graph in some order, known as a graph traversal.A breadth-first search (BFS) is a traversal that visits a starting vertex, then all vertices of distance 1 from that vertex, then of distance 2, and so on, without revisiting a vertex. Since the visiting order of same-distance vertices doesn't matter, there can be multiple gra..
GraphsA graph is a data structure for representing connections among items, and consists of vertices connected by edges.- A vertex (or node) represents an item in a graph.- An edge represents a connection between two vertices in a graph. In a graph, - Two vertices are adjacent if connected by an edge.- A path is a sequence of edges leading form a source vertex to a destination vertex. The path..