anonymous.rs
Search
Search
Dark mode
Light mode
Explorer
Tag: algorithm
12 items with this tag.
Mar 17, 2026
알고리즘: 너비 우선 탐색 (BFS, Breadth-First Search)
algorithm
interview
graph
bfs
Mar 17, 2026
알고리즘: 깊이 우선 탐색 (DFS, Depth-First Search)
algorithm
interview
graph
dfs
Mar 17, 2026
알고리즘: 순열(Permutation)과 조합(Combination)
algorithm
interview
math
backtracking
permutation
combination
Mar 17, 2026
알고리즘: 다익스트라 (Dijkstra's Algorithm)
algorithm
interview
graph
shortest-path
dijkstra
Mar 17, 2026
알고리즘: 플로이드-워셜 (Floyd-Warshall Algorithm)
algorithm
interview
graph
shortest-path
floyd-warshall
dp
Mar 17, 2026
정렬 알고리즘: 버블 정렬 (Bubble Sort)
algorithm
interview
sorting
bubble-sort
Mar 17, 2026
정렬 알고리즘: 힙 정렬 (Heap Sort)
algorithm
interview
sorting
heap-sort
heap
Mar 17, 2026
정렬 알고리즘: 삽입 정렬 (Insertion Sort)
algorithm
interview
sorting
insertion-sort
Mar 17, 2026
정렬 알고리즘: 병합 정렬 (Merge Sort)
algorithm
interview
sorting
merge-sort
Mar 17, 2026
정렬 알고리즘: 퀵 정렬 (Quick Sort)
algorithm
interview
sorting
quick-sort
Mar 17, 2026
정렬 알고리즘: 선택 정렬 (Selection Sort)
algorithm
interview
sorting
selection-sort
Mar 17, 2026
알고리즘: 위상 정렬 (Topological Sort)
algorithm
interview
graph
topological-sort