별의 공부 블로그 🧑🏻‍💻
728x90
728x170

*[header][other] algorithm


Standard Template Library: Algorithms

The header <algorithm> defines a collection of functions especially designed to be used on ranges of elements.

A range is any sequence of objects that can be accessed through iterators or pointers, such as an array or an instance of some of the STL containers. Notice though, that algorithms operate through iterators directly on the values, not affecting in any way the structure of any possible container (it never affects the size or storage allocation of the container).

Functions in <algorithm>

Non-modifying sequence operations:


Modifying sequence operations:


Partitions:


Sorting:


Binary search (operating on partitioned/sorted ranges):


Merge (operating on sorted ranges):


Heap:


Min/max:


Other:


내용 출처 : http://www.cplusplus.com/reference/algorithm/?kw=algorithm

728x90
그리드형(광고전용)

'Programming > C++' 카테고리의 다른 글

[header][other] complex  (0) 2017.11.08
[header][other] codecvt (C++11)  (0) 2017.11.08
[header][other] chrono (C++11)  (0) 2017.11.08
[header][other] bitset  (0) 2017.11.08
[header][container] unordered_set (C++11)  (0) 2017.11.08
[header][container] unordered_map (C++11)  (0) 2017.11.08
[header][container] forward_list (C++11)  (0) 2017.11.08
[header][container] list  (0) 2017.11.08
⚠️AdBlock이 감지되었습니다. 원할한 페이지 표시를 위해 AdBlock을 꺼주세요.⚠️
starrykss
starrykss
별의 공부 블로그 🧑🏻‍💻


📖 Contents 📖