-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack_utils.c
73 lines (65 loc) · 1.76 KB
/
stack_utils.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* stack_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rd-agost <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/07 13:41:37 by rd-agost #+# #+# */
/* Updated: 2024/06/20 17:40:05 by rd-agost ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
t_stack *ft_new_stack(int value)
{
t_stack *new;
new = malloc(sizeof * new);
if (!new)
return (NULL);
new->dish = value;
new->eff_a = -1;
new->eff_b = -1;
new->target = -1;
new->index = 0;
new->posiz = -1;
new->next = NULL;
return (new);
}
t_stack *ft_stack_last(t_stack *stack)
{
if (!stack)
return (NULL);
while (stack->next != NULL)
stack = stack->next;
return (stack);
}
t_stack *ft_stack_penultimate(t_stack *stack)
{
if (!stack)
return (NULL);
while (stack && stack->next && stack->next->next != NULL)
stack = stack->next;
return (stack);
}
int ft_stack_len(t_stack *stack)
{
int len;
len = 0;
if (!stack)
return (0);
while (stack)
{
len++;
stack = stack->next;
}
return (len);
}
void ft_add_back(t_stack **stack, t_stack *new)
{
if (!stack || !new)
return ;
if (*stack)
ft_stack_last(*stack)->next = new;
else
*stack = new;
}