---C++ 역량 강화---/STL 공부

알고리즘의 분류

코리아탑클 2024. 5. 30. 21:19

1. 원소를 수정하지 않는 알고리즘

- binary search, count, count_if, range based for, all_of, any_of, none_of, contains 등...

2. 원소를 수정하는 알고리즘

- copy, move, tranform, remove, erase, swap, unique, rotate 등...

3. 정렬과 관련된 알고리즘

sort, partitial_sort, nth_elements, stable_sort, shuffle 등...