Tag: c
All the articles with the tag "c".
-
[C] DFS(Depth First Search)
When explaining the graphgraph data structure, we learned about the path. The list of vertices that goes through to move from vertex A to B ...
-
[C] DFS(Depth First Search) 깊이우선탐색
그래프graph 자료구조에 대해서 설명할 때, 경로에 대해 학습했다. 정점 A에서 B로 이동하기 위해 거쳐가는 정점들의 리스트는 각기 다를 수 있으며, 그로인해 각기 다른 경로 길이를 가질 수 있다. 경로를 탐색하기 위한 대표적인 방법은 DFS와 BF...
-
[C] Graph
A graph is a nonlinear data structure that expresses the relationship between objects, and expresses a manytomany relationship. It should be...
-
[C] 그래프
그래프란객체 간의 관계를 표현하는 비선형 자료구조이며, 다 대 다의 관계를 표현한다. C 언어에서의 그래프는 다른 언어 및 일반적으로 사용하는 그래프의 개념과는 다름을 유의해야한다. 그래프는 주로 G 로 나타내며 G=V,E 와 같이 V 와 E의 정보로...
-
[C] Permutation, Combination
The part about permutation and combination is a regular customer who frequently appears in algorithmic problem solving and is a good example...