hyunsik-yoon / Data-Structures-and-Algorithms

Apache License 2.0
1 stars 0 forks source link

Find internal algorithm of `std::sort()` #35

Open hyunsik-yoon opened 1 year ago

hyunsik-yoon commented 1 year ago

This was asked by chapter 190. Let's find out.

hyunsik-yoon commented 1 year ago

From many sources,

IntroSort is used, which is mixture of quick sort and heap sort.

When the number of elements are small, insertion sort is used.