Skip to content

Latest commit

 

History

History
65 lines (39 loc) · 1.62 KB

File metadata and controls

65 lines (39 loc) · 1.62 KB

Standard Code Library

For ACM/ICPC or other Algorithm Contests.

Contents

Contents
C++ STL & String
Sorting Algorithm
Basic Data Structure
Intermediate Data Structure
Advanced Data Structure
Brute-Force & Search
Divide and Conquer
Greedy
Dynamic Programming
Hash
Graph Theory
Mathematics
Computational Geometry
String Algorithm
Constructive Algorithm
Data Maker & Special Judge & Debug
Others (Tips & Skills & Techniques)
Java & Python

C++ STL & String

vector, pair, stack, queue, priority_queue, deque, set, multiset, map, bitset, algorithm, string

Basic Data Structure

stack, queue, linked list, double linked list, memory pool, union-find set, binary heap, st-RMQ, Fenwick tree / binary index tree

Intermediate Data Structure

partition tree, segment tree

Graph Theory

BFS, DFS, connectivity,

Others (Tips & Skills & Techniques)