-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.c
More file actions
80 lines (58 loc) · 1.2 KB
/
Copy pathstack.c
File metadata and controls
80 lines (58 loc) · 1.2 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
#include <math.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "node.h"
#include "stack.h"
typedef struct Stack {
uint32_t top;
uint32_t capacity;
Node **items;
} Stack;
Stack *stack_create(uint32_t capacity) {
Stack *s = (Stack *)malloc(sizeof(Stack));
s->items = (Node **)calloc(capacity, sizeof(Node *));
s->top = 0;
s->capacity = capacity;
return s;
}
void stack_delete(Stack **s) {
free((*s)->items);
free(*s);
*s = NULL;
}
bool stack_empty(Stack *s) {
if (s->top == 0) {
return true;
}
return false;
}
bool stack_full(Stack *s) {
if (s->top == s->capacity) {
return true;
}
return false;
}
uint32_t stack_size(Stack *s) { return s->top; }
bool stack_push(Stack *s, Node *n) {
if (s->top < s->capacity) {
s->items[s->top] = n;
s->top++;
return true;
}
return false;
}
bool stack_pop(Stack *s, Node **n) {
if (s->top > 0) {
*n = s->items[s->top - 1];
s->top--;
return true;
}
return false;
}
void stack_print(Stack *s) {
for (uint32_t i = 0; i < s->top; i++) {
node_print(s->items[i]);
}
}