-
Notifications
You must be signed in to change notification settings - Fork 0
/
operations.c
109 lines (99 loc) · 1.98 KB
/
operations.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
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
#include "monty.h"
/**
* push - add to head of stack
* @stack: stack
* @line_number: file line number
* Return: nothing
*/
void push(stack_t **stack, unsigned int line_number)
{
stack_t *new;
int n;
if (operand == NULL || !isNumber(operand))
{
fprintf(stderr, "L%d: usage: push integer\n", line_number);
free_stack(*stack);
exit(EXIT_FAILURE);
}
new = malloc(sizeof(stack_t));
n = atoi(operand);
if (new == NULL)
{
fprintf(stderr, "Error: malloc failed\n");
exit(EXIT_FAILURE);
}
new->n = n;
new->next = *stack;
new->prev = NULL;
*stack = new;
}
/**
* pall - print elements in stack
* @stack: stack
* @line_number: file line number
* Return: nothing
*/
void pall(stack_t **stack, unsigned int line_number)
{
const stack_t *current = *stack;
(void)line_number;
while (current != NULL)
{
printf("%d\n", current->n);
current = current->next;
}
}
/**
* pint - print head of stack
* @stack: stack
* @line_number: file line number
* Return: nothing
*/
void pint(stack_t **stack, unsigned int line_number)
{
if (*stack == NULL)
{
fprintf(stderr, "L%d: can't pint, stack empty\n", line_number);
free_stack(*stack);
exit(EXIT_FAILURE);
}
printf("%d\n", (*stack)->n);
}
/**
* pop - pop head of stack
* @stack: stack
* @line_number: file line number
* Return: nothing
*/
void pop(stack_t **stack, unsigned int line_number)
{
stack_t *curr = *stack;
if (*stack == NULL)
{
fprintf(stderr, "L%d: can't pop an empty stack\n", line_number);
free_stack(*stack);
exit(EXIT_FAILURE);
}
*stack = curr->next;
}
/**
* swap - swap top two elements of stack
* @stack: stack
* @line_number: file line number
* Return: nothing
*/
void swap(stack_t **stack, unsigned int line_number)
{
stack_t *curr = *stack;
int n;
if (curr == NULL || curr->next == NULL)
{
fprintf(stderr, "L%d: can't swap, stack too short\n", line_number);
free_stack(*stack);
exit(EXIT_FAILURE);
}
n = curr->n;
curr = curr->next;
(*stack)->n = curr->n;
(*stack)->next->n = n;
}