-
Notifications
You must be signed in to change notification settings - Fork 0
/
slip-30-b.c
70 lines (62 loc) · 1.27 KB
/
slip-30-b.c
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
// NOTE: does not work yet
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>
void swap(char *a[100], char *b[100])
{
char temp[100] = *a;
*a = *b;
*b = temp;
}
void sort(char arr[100][100], int len)
{
int i, j;
bool swapped;
for (i = 0; i < len - 1; i++)
{
swapped = false;
for (j = 0; j < len; j++)
{
int result = strcmp(arr[j], arr[j + 1]);
if (result < 0)
{
swap(&arr[j], &arr[j + 1]);
swapped = true;
}
}
if (swapped == false)
{
break;
}
}
}
void printArr(char arr[100][100], int len)
{
for (int i = len; i >= 0; i--)
{
printf("%s \n", arr[i]);
}
}
void main()
{
char nameArray[100][100];
FILE *fp;
fp = fopen("mp-sp-30.txt", "r");
if (fp == NULL)
{
printf("Error opening file\n");
exit(1);
}
int i = 0;
while (!feof(fp))
{
fscanf(fp, "%s", nameArray[i]);
i = i + 1;
}
printf("Orginal Array \n");
printArr(nameArray, i);
sort(nameArray, i);
printf("Sorted Array \n");
printArr(nameArray, i);
}