-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoperation2.c
More file actions
executable file
·130 lines (111 loc) · 2.11 KB
/
operation2.c
File metadata and controls
executable file
·130 lines (111 loc) · 2.11 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#include "main.h"
/**
* rotl - rotates the stack to the top
* @stack: pointer to the head node pointer of stack
* @nline: the line number
* Return: Nothing.
*/
void rotl(stack_t **stack, unsigned int nline)
{
stack_t *temp;
int hold_this, hold_this_again;
(void)nline;
if (stack == NULL || *stack == NULL)
{
nop(stack, nline);
}
hold_this = (*stack)->n;
temp = *stack;
while (temp)
{
if (temp->next == NULL)
break;
temp = temp->next;
}
hold_this_again = temp->n;
(*stack)->n = hold_this_again;
temp->n = hold_this;
}
/**
* rotlop - rotates stack to left
* @stack: pointer to the head node pointer of stack
* @nline: the line number
* Return: Nothing.
*/
void rotlop(stack_t **stack, unsigned int nline)
{
stack_t *last, *tmp;
(void)nline;
if (!stack || !(*stack) || !((*stack)->next))
return;
tmp = *stack;
last = tmp;
while (last->next)
{
last = last->next;
}
last->next = tmp;
tmp->prev = last;
tmp->next->prev = NULL;
*stack = tmp->next;
tmp->next = NULL;
}
/**
* rotrop - rotates stack to right
* @stack: pointer to the head node pointer of stack
* @nline: the line number
* Return: Nothing.
*/
void rotrop(stack_t **stack, unsigned int nline)
{
stack_t *last, *tmp;
(void)nline;
if (!stack || !(*stack) || !((*stack)->next))
return;
tmp = *stack;
last = tmp;
while (last->next)
{
last = last->next;
}
last->prev->next = NULL;
last->prev = NULL;
tmp->prev = last;
last->next = tmp;
*stack = last;
}
/**
* qpush - pushes for queue instead of stack
* @stack: pointer to the head node pointer of stack
* @nline: the line number
* Return: Nothing.
*/
void qpush(stack_t **stack, unsigned int nline)
{
stack_t *last, *new;
if (stack == NULL)
{
fprintf(stderr, "L%d: stack not found\n", nline);
exit(EXIT_FAILURE);
}
new = malloc(sizeof(stack_t));
if (new == NULL)
{
fprintf(stderr, "Error: malloc failed\n");
free_stack(stack);
exit(EXIT_FAILURE);
}
last = NULL;
if (*stack)
{
last = *stack;
while (last->next)
last = last->next;
last->next = new;
}
else
*stack = new;
new->prev = last;
new->next = NULL;
new->n = arg.arg;
}