Fixed OS/C/Week5/q2opt fixed
This commit is contained in:
parent
f9ab48cea7
commit
330af1a823
5 changed files with 13 additions and 2 deletions
BIN
OS/C/Week5/q2
Executable file
BIN
OS/C/Week5/q2
Executable file
Binary file not shown.
BIN
OS/C/Week5/q2_opt
Executable file
BIN
OS/C/Week5/q2_opt
Executable file
Binary file not shown.
|
@ -8,7 +8,7 @@
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
void main () {
|
int main () {
|
||||||
|
|
||||||
// array declaration
|
// array declaration
|
||||||
char *strings[5];
|
char *strings[5];
|
||||||
|
|
BIN
OS/C/Week5/q2opt
BIN
OS/C/Week5/q2opt
Binary file not shown.
|
@ -12,7 +12,18 @@ int compare_strings(const void *a, const void *b) {
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
pid_t pid = fork();
|
pid_t pid = fork();
|
||||||
if (pid == 0) {
|
if (pid == 0) {
|
||||||
qsort(&argv[1], argc - 1, sizeof(char *), compare_strings);
|
int i, j;
|
||||||
|
int count = argc - 1;
|
||||||
|
char **strings = &argv[1];
|
||||||
|
for (i = 0; i < count - 1; i++) {
|
||||||
|
for (j = 0; j < count - i - 1; j++) {
|
||||||
|
if (strcmp(strings[j], strings[j + 1]) > 0) {
|
||||||
|
char *temp = strings[j];
|
||||||
|
strings[j] = strings[j + 1];
|
||||||
|
strings[j + 1] = temp;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
printf("Child Sorted:\n");
|
printf("Child Sorted:\n");
|
||||||
for (int i = 1; i < argc; ++i)
|
for (int i = 1; i < argc; ++i)
|
||||||
printf("%s\n", argv[i]);
|
printf("%s\n", argv[i]);
|
||||||
|
|
Loading…
Add table
Reference in a new issue