Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

알고리즘/문제유형: Difference between revisions

From ZeroWiki
imported>skywave
No edit summary
imported>joojis
No edit summary
Line 27: Line 27:
* 문제
* 문제
** http://poj.org/problem?id=1149
** http://poj.org/problem?id=1149
== 탐색 ==
=== Backtracking ===
=== 너비우선탐색 (BFS) ===
=== 깊이우선탐색 (DFS) ===
== 탐욕법 (Greedy) ==
== 동적계획법 (Dynamic Programming) ==
=== 최장 증가 수열 ===
== 분할 정복 ==
== 기하 ==
=== 벡터 내적/외적 ===
=== Convex Hull ===
== 문자열 ==
=== KMP 문자열 탐색 ===
=== 접두사 트리 (Prefix Tree, Trie) ===
=== 접미사 배열 (Suffix Array) ===
== 트리 및 그래프 ==
=== 위상 정렬 (Topological Sort) ===
=== 최소 신장 트리 (Minimum Spanning Tree) ===
=== 최대 유량 알고리즘 (Maximum Flow) ===
=== 강연결 요소 (Strongly Connected Componenets) ===
=== 단절점 (Articulation Point) ===



Revision as of 10:37, 12 February 2016

상위 항목: 알고리즘

Segment Tree

기하

KMP

Networking Flow


탐색

Backtracking

너비우선탐색 (BFS)

깊이우선탐색 (DFS)

탐욕법 (Greedy)

동적계획법 (Dynamic Programming)

최장 증가 수열

분할 정복

기하

벡터 내적/외적

Convex Hull

문자열

KMP 문자열 탐색

접두사 트리 (Prefix Tree, Trie)

접미사 배열 (Suffix Array)

트리 및 그래프

위상 정렬 (Topological Sort)

최소 신장 트리 (Minimum Spanning Tree)

최대 유량 알고리즘 (Maximum Flow)

강연결 요소 (Strongly Connected Componenets)

단절점 (Articulation Point)