Question d’entretien chez Autodesk

What' sorting algorithm ? which sorting algorithm has the time complexity of O(N(log N))

Réponse à la question d'entretien

Utilisateur anonyme

4 mars 2025

A sorting algorithm is a method used to arrange a list of elements in a specific order, typically in ascending or descending order. The time complexity O(N log N) is achieved by more efficient sorting algorithms like Merge sort, Quick Sort, Heap sort. Then i was asked to code merge sort.

1