Tag: algorithm
All the articles with the tag "algorithm".
-
[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] Permutation, Combination
The part about permutation and combination is a regular customer who frequently appears in algorithmic problem solving and is a good example...
-
[C] 순열, 조합
순열과 조합에 대한 부분은 알고리즘 문제풀이에 빈번히 등장하는 단골손님이자, 재귀호출재귀 호출을 이해하기에 좋은 예재이기도 하다. 또한 DepthFirst Search DFS와도 코드 구성이 유사해 도움이 많이된다. 순열과 조합 자체에 대한 수학적인 ...
-
[C] Fining max value
To find the maximum value in an array, you can directly find the maximum value or return the index where the maximum value of the array is l...