What is the cut-off for switching from quick sort to heap sort in the implementation of introsort?

What is the cut-off for switching from quick sort to heap sort in the implementation of introsort? Correct Answer 2 log (n)

Quicksort has a worst case time complexity of O(n2) which is not preferable. So in order to avoid worst case of quicksort, introsort switches to heap sort when the depth is greater than 2 log(n). This particular value has been deduced experimentally.

Related Questions

Why is heap sort preferred over merge sort for introsort implementation?
Why is insertion sort preferred over other sorting algorithms (like selection sort, bubble sort etc.) for introsort implementation?
Consider an open loop circuit with lower cutoff frequency 5kHz and upper cutoff frequency 20kHz. If negative feedback is applied to the same, choose correct option stating the new cutoff frequencies.
Why is insertion sort preferred over other sorting algorithms (like selection sort, bubble sort etc.) for Tim sort implementation?