You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>> Arranges the elements of a list in a certain order (descending or ascending)
3
+
Output is a permutation or reordering of the input
4
+
** Often used for database algorithms and searches
5
+
6
+
* Classification of sorting algorithms
7
+
** By number of comparisons
8
+
Best case is O(nlogn) and worst case is O(n^2)
9
+
10
+
* Internal sort:
11
+
sort algorithms that use main memory exclusively during the sort called internal sorting. This alfgorithm assummes high speed random access to all memory
12
+
13
+
* External Sort:
14
+
sorting algorithms that use external memory, during the sort.
0 commit comments