John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: #archivedCards/cmpt125/algorithms Links: Sorting Algorithms


Merge Sort

Principles

Keeps relative sort order, as it wouldnt swap same elements

For disk-bound data ?

Stages

Worst, average, best case in bigO ;; Always O(nlogn)

Space complexity ?

Prove running time ? T(N) = 2 x T(n/2) + 3n = 2 x (2 x T(N/4) + (3N/2)) + 3N = 4 x T(N/4) + 2 x (3N/2) + 3N

Implementation

?

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
void merge(int A[], int mid, int n) {

  int* tmp = (int*) malloc(n*sizeof(int));

  int i = 0;
  int j = mid;
  int k = 0;

  while (k<n) {

    if (i==mid || (j<n && A[j] < A[i])) {
      tmp[k] = A[j];
      j++;
    } else {
      tmp[k] = A[i];
      i++;
    }
    k++;
  }

  for(int k = 0; k < n; k++)
      A[k] = tmp[k];  

  free(tmp);

}
void mergeSort(int arr[], int r) {
  
  if (r >= 2) { //goes until size 0 arr
    int m = r/2;

    mergeSort(arr, m);
    mergeSort(arr+m, r-m);

    merge(arr, m, r);
  }

}

Backlinks

1
list from Merge Sort AND !outgoing(Merge Sort)

References:

Created:: 2021-10-04 15:51


Interactive Graph