| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 반복문
- Data Science
- function
- pointer
- predictive analysis
- Class
- pass by reference
- vscode
- const
- 알고리즘
- assignment operator
- string
- 오블완
- Deep Learning
- Python
- array
- 문자열
- raw data
- 파이썬
- baekjoon
- OOP
- Pre-processing
- 포인터
- programming
- 배열
- 백준
- C++
- 티스토리챌린지
- Object Oriented Programming
- 함수
- 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..