-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha11f2.c
More file actions
114 lines (91 loc) · 2.35 KB
/
Copy patha11f2.c
File metadata and controls
114 lines (91 loc) · 2.35 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#include <stdio.h>
#include <stdlib.h>
#define StackLimit 20
typedef int StackElementType;
typedef struct {
int Top;
StackElementType Element[StackLimit];
} StackType;
typedef enum {
FALSE, TRUE
} boolean;
void CreateStack(StackType *Stack);
boolean EmptyStack(StackType Stack);
void Push(StackType *Stack, StackElementType Item);
void Pop(StackType *Stack, StackElementType *Item);
void TraverseStack(StackType Stack);
StackType FilterStack(StackType Stack , StackElementType Item);
int main() {
int plithos, i;
StackElementType item, delItem;
StackType MyStack;
printf("Dwse to plithos twn stoixeiwn: ");
scanf("%d" , &plithos);
CreateStack(&MyStack);
for(i = 1; i <= plithos ; i++) {
printf("Dwse to %d o stoixeio: " , i);
scanf("%d" , &item);
Push(&MyStack, item);
}
printf("Dwse to stoixeio gia diagrafi: ");
scanf("%d" , &delItem);
TraverseStack(MyStack);
MyStack = FilterStack(MyStack, delItem);
TraverseStack(MyStack);
return 0;
}
StackType FilterStack(StackType Stack, StackElementType Item) {
StackType TempStack;
CreateStack(&TempStack);
StackElementType item;
while(item != Item) {
item = Stack.Element[Stack.Top];
Pop(&Stack, &item);
if(item != Item) {
Push(&TempStack, item);
}
TraverseStack(Stack);
TraverseStack(TempStack);
}
while(!EmptyStack(TempStack)) {
item = TempStack.Element[Stack.Top];
Pop(&TempStack, &item);
Push(&Stack, item);
TraverseStack(TempStack);
TraverseStack(Stack);
}
return Stack;
}
void CreateStack(StackType *Stack)
{
Stack -> Top = -1;
}
boolean EmptyStack(StackType Stack)
{
return (Stack.Top == -1);
}
void Push(StackType *Stack, StackElementType Item)
{
if (!FullStack(*Stack)) {
Stack -> Top++;
Stack -> Element[Stack -> Top] = Item;
} else
printf("Full Stack...");
}
void Pop(StackType *Stack, StackElementType *Item)
{
if (!EmptyStack(*Stack)) {
*Item = Stack -> Element[Stack -> Top];
Stack -> Top--;
} else
printf("Empty Stack...");
}
void TraverseStack(StackType Stack)
{
int i;
printf("\nplithos sto stack %d\n",Stack.Top+1);
for (i=0;i<=Stack.Top;i++) {
printf("%d, ",Stack.Element[i]);
}
printf("\n");
}