-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack.c
executable file
·76 lines (63 loc) · 1.58 KB
/
stack.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
#include "stack.h"
int StackNotEmpty(stk_stack * theStack) {
return( theStack ? (NULL == theStack->top) : 0);
}
stk_stack * StackJoin(stk_stack * stack1, stk_stack * stack2) {
if (!stack1->tail) {
free(stack1);
return(stack2);
} else {
stack1->tail->next=stack2->top;
stack1->tail=stack2->tail;
free(stack2);
return(stack1);
}
}
stk_stack * StackCreate() {
stk_stack * newStack;
newStack=(stk_stack *) SafeMalloc(sizeof(stk_stack));
newStack->top=newStack->tail=NULL;
return(newStack);
}
void StackPush(stk_stack * theStack, DATA_TYPE newInfoPointer) {
stk_stack_node * newNode;
if(!theStack->top) {
newNode=(stk_stack_node *) SafeMalloc(sizeof(stk_stack_node));
newNode->info=newInfoPointer;
newNode->next=theStack->top;
theStack->top=newNode;
theStack->tail=newNode;
} else {
newNode=(stk_stack_node *) SafeMalloc(sizeof(stk_stack_node));
newNode->info=newInfoPointer;
newNode->next=theStack->top;
theStack->top=newNode;
}
}
DATA_TYPE StackPop(stk_stack * theStack) {
DATA_TYPE popInfo;
stk_stack_node * oldNode;
if(theStack->top) {
popInfo=theStack->top->info;
oldNode=theStack->top;
theStack->top=theStack->top->next;
free(oldNode);
if (!theStack->top) theStack->tail=NULL;
} else {
popInfo=NULL;
}
return(popInfo);
}
void StackDestroy(stk_stack * theStack,void DestFunc(void * a)) {
stk_stack_node * x=theStack->top;
stk_stack_node * y;
if(theStack) {
while(x) {
y=x->next;
DestFunc(x->info);
free(x);
x=y;
}
free(theStack);
}
}