aboutsummaryrefslogtreecommitdiff
path: root/src/sort.c
blob: df8b1f5bdb3401528c721ea5bd64b063b534dff4 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include "utils.h"
#include <stdio.h>
void bubblesort(int a[], int n) {
  int comparisons = 0;
  for (int i = 0; i < n; i++) {
    for (int j = 1; j < n - i; j++) {
      comparisons++;
      if (a[j - 1] > a[j]) {
        swap(a, j, j - 1);
      }
    }
    printarr(a, n);
    printf("\n");
  }
}

void selectionsort(int a[], int n) {
  for (int i = 0; i < n; i++) {
    int small = i;
    for (int j = i; j < n; j++) {
      if (a[j] < a[small]) {
        small = j;
      }
    }
    swap(a, i, small);
    printarr(a, n);
    printf("\n");
  }
}

void insertionsort(int a[], int n) {
  for (int i = 1; i < n; i++) {
    int j = i;
    while (j > 0 && a[j - 1] > a[j]) {
      swap(a, j, j - 1);
      j--;
    }
    printarr(a, n);
    printf("\n");
  }
}

int get_max(int a[], int n) {
  int max = a[0];
  int i;
  for (i = 1; i < n; i++)
    if (a[i] > max)
      max = a[i];
  return max;
}
void radixsort(int a[], int n) {
  int bucket[10][10], bucket_cnt[10];
  int i, j, k, r, NOP = 0, divisor = 1, lar, pass;
  lar = get_max(a, n);
  while (lar > 0) {
    NOP++;
    lar /= 10;
  }
  for (pass = 0; pass < NOP; pass++) {
    for (i = 0; i < 10; i++) {
      bucket_cnt[i] = 0;
    }
    for (i = 0; i < n; i++) {
      r = (a[i] / divisor) % 10;
      bucket[r][bucket_cnt[r]] = a[i];
      bucket_cnt[r] += 1;
    }
    i = 0;
    for (k = 0; k < 10; k++) {
      for (j = 0; j < bucket_cnt[k]; j++) {
        a[i] = bucket[k][j];
        i++;
      }
    }
    divisor *= 10;
    printarr(a, n);
    printf("\n");
  }
}