This commit is contained in:
HexPloR
2024-06-24 00:05:59 +02:00
commit 4c83562ca9
81 changed files with 3228 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* sort_5.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yantoine <yantoine@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/13 16:58:35 by yantoine #+# #+# */
/* Updated: 2024/03/14 22:57:44 by yantoine ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/push_swap.h"
void sort_5(t_Liste *stack_a, t_Liste *stack_b)
{
int min;
int max;
int i;
if (is_sorted(stack_a))
return ;
min = stack_a->min;
max = stack_a->max;
i = 0;
while (i < 5)
{
if (stack_a->premier->number == min \
|| stack_a->premier->number == max)
{
push(stack_a, stack_b, 'b');
break ;
}
else
rotate(stack_a, 'a');
i++;
}
sort_4(stack_a, stack_b);
push(stack_a, stack_b, 'a');
if (!is_sorted(stack_a))
rotate(stack_a, 'a');
}