forked from sisittu99/push_swap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_write.c
76 lines (68 loc) · 1.88 KB
/
check_write.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* check_write.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mcerchi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/26 12:07:54 by mcerchi #+# #+# */
/* Updated: 2022/02/26 14:48:10 by mcerchi ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
static void ft_lstcheck_c(t_list *stack_a, int check)
{
while (stack_a->next != NULL)
{
if (stack_a->content == check)
ft_display_exit();
stack_a = stack_a->next;
}
return ;
}
static void ft_lst_order_c(t_list **stack_a)
{
t_list *tmp;
t_list *tmp2;
tmp = *stack_a;
tmp2 = tmp->next;
while (tmp2 != NULL)
{
if (tmp->content > tmp2->content)
return ;
tmp = tmp->next;
tmp2 = tmp2->next;
}
exit(0);
}
void ft_check_lst_inverted(t_list **stack_a)
{
t_list *tmp;
t_list *tmp2;
tmp = *stack_a;
tmp2 = tmp->next;
while (tmp2 != NULL)
{
if (tmp->content < tmp2->content)
return ;
tmp = tmp->next;
tmp2 = tmp2->next;
}
ft_sa_check(stack_a);
return ;
}
void ft_check_write_lst(t_list **stack_a, int argc, char **argv, int i)
{
t_list *tmp;
tmp = NULL;
while (i < argc)
{
tmp = ft_lstnew(ft_atoi(argv[i]));
ft_lstadd_back(stack_a, tmp);
ft_lstcheck_c(*stack_a, tmp->content);
i++;
}
ft_lst_order_c(stack_a);
ft_check_lst_inverted(stack_a);
tmp = NULL;
}