-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstackInterface.c
More file actions
83 lines (74 loc) · 1.33 KB
/
stackInterface.c
File metadata and controls
83 lines (74 loc) · 1.33 KB
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
#include <stdio.h>
#include <stdlib.h>
struct node {
int data;
struct node *next;
}*first;
int size;
void push (int val) {
struct node *newnode;
newnode = (struct node*)malloc(sizeof(struct node));
newnode->data = val;
newnode->next = first;
first = newnode;
size++;
}
int pop () {
struct node *tmp;
int val;
tmp = first;
val = first->data;
first = first->next;
free(tmp);
size--;
return val;
}
int main(int argc, char *argv[]) {
FILE *fp;
char *str;
size_t len;
int linelen;
int num;
int i;
int negativeCheck;
if (argc != 2) {
printf("Unsupported number of parameters passed. Exiting.\n");
return 1;
}
fp = fopen(argv[1], "r");
linelen = getline(&str, &len, fp);
negativeCheck = 0;
while(!feof(fp)) {
first = NULL;
i = 0;
size = 0;
linelen--;
while(i < linelen) {
num = 0;
if (str[i] == '-') {
negativeCheck = 1;
i++;
continue;
}
while (str[i] != ' ' && i < linelen) {
num = num*10 + (str[i] - '0');
i++;
}
if (negativeCheck) {
num = -num;
negativeCheck = 0;
}
push(num);
i++;
}
while (size > 0) {
printf("%d ", pop());
if (size > 0) {
pop();
}
}
printf("\n");
linelen = getline(&str, &len, fp);
}
return 0;
}