python – Subquadratic sort

Question:

I study at the university and study programming, namely sorting algorithms, and I came across subquadratic sorting, which is not mentioned anywhere. Can someone roughly write in a nutshell what its essence is and give an example code? I will be very grateful.

Answer:

I think this does not mean a specific algorithm, but any sorting algorithms with complexity less than quadratic. Somewhere they are also called "improved sorting algorithms".

Scroll to Top