forked from smuos/simpleStats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmm.c
89 lines (72 loc) · 2.38 KB
/
mm.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//Kashif Kashif
//A00369617
//OS: Submission 2
//Command to run: ./mm.out 1 2 3 4 5
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#define debug 0
// Comparison function for qsort()
int numcmp (const void *a, const void *b) {
int x = *((int*) a);
int y = *((int*) b);
if (x > y) return 1;
if (x < y) return -1;
return 0;
}
double mean (int* values, int length) { //calculates mean, precision is already set to two decimal places
double sum = 0;
for (int i = 0; i < length; i++) {
sum +=values[i];
}
return sum / length;
}
double median (int* values, int length) { ////calculates median, precision is already set to two decimal places
int middle = length / 2;
if (length % 2 == 0) { //check if the total number is even/odd
return(values[middle - 1] + values[middle]) / 2;
} else {
return values[middle];
}
}
int main(int argc, char *argv[]) {
int i, length, *pt;
// Check for proper usage
if (argc < 2) {
fprintf(stderr, "%s: Aborting, not enough arguments.\n", argv[0]);
return (-1);
}
// Determine amount of numbers from argc
length = argc - 1;
#if debug
fprintf(stderr, "%s: DEBUG: %d numbers were passed.\n", argv[0], length);
#endif
// Allocate memory for array of number (and error check)
if ((pt = malloc(length * sizeof(int))) == NULL) {
fprintf(stderr, "%s: Could not allocate memory.\n", argv[0]);
}
// Read numbers into array
for (i = 0; i < length; i++) {
pt[i] = (int) strtol(argv[i+1], NULL, 10);
}
// Sort numbers
qsort(pt, length, sizeof(int), numcmp);
// Print out numbers
fprintf(stdout, "%s:(%d) Sorted output is: \n", argv[0], (int)getpid());
for (i=0; i<length; i++) {
fprintf(stdout, "%d ", pt[i]);
}
int slice = fork(); //system call
if (slice < 0) {
fprintf(stderr, "%s: Failure: fork didnt run properly!", argv[0]);
} else if (slice == 0) { //print the median
fprintf(stdout, "\n%s:(%d C) Median = %.2f", argv[0],
(int)getpid(), median(pt, length));
} else if (slice > 0) {
int pause = wait(NULL); //system call to make parent wait and then print the mean
fprintf(stdout, "\n%s:(%d P, %d PS) Mean is: %.2f", argv[0],
(int)getpid(), pause, mean(pt, length));
}
fprintf(stdout, "\n%s: FIN. \n", argv[0]);
return 0;
}