What type of sort does the SORT function in MATLAB perform?

56 vues (au cours des 30 derniers jours)
MathWorks Support Team
MathWorks Support Team le 27 Juin 2009
Commenté : Royi Avital le 11 Sep 2020
Could you tell me the algorithm and/or the running time of the SORT function?
I need to know which sorting algorithm is used by MATLAB when the SORT function is executed.

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 27 Juin 2009
Modifié(e) : MathWorks Support Team le 6 Avr 2018
The type of sort that is done is a Quick Sort. It is not an 'adaptive sorting' algorithm, and does not deviate much from the standard Quick Sort algorithm. Quick Sort has been found to be one of the fastest algorithms for sorting; it is an O(n log n) operation. We do not have specific time information, since it depends on both the system and the numerical data used in the sort.
  1 commentaire
Royi Avital
Royi Avital le 11 Sep 2020
Is it a stable implementation of QuickSort?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by