presque
This commit is contained in:
parent
c4efdc8ff1
commit
3fc423de4a
4
Makefile
4
Makefile
@ -6,11 +6,11 @@
|
||||
# By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ #
|
||||
# +#+#+#+#+#+ +#+ #
|
||||
# Created: 2022/11/28 16:34:37 by cchauvet #+# #+# #
|
||||
# Updated: 2022/12/01 16:54:34 by cchauvet ### ########.fr #
|
||||
# Updated: 2022/12/06 13:32:50 by cchauvet ### ########.fr #
|
||||
# #
|
||||
# **************************************************************************** #
|
||||
|
||||
SRCS = ft_swap.c ft_putstr.c ft_p.c ft_sort.c ft_tablen.c main.c ft_atoi.c ft_radix.c ft_isnum.c ft_r.c ft_is_sorted.c ft_get_max.c
|
||||
SRCS = ft_swap.c ft_putstr.c ft_p.c ft_sort.c ft_tablen.c main.c ft_atoi.c ft_radix.c ft_isnum.c ft_r.c ft_is_sorted.c ft_get_max.c ft_bitlen.c
|
||||
|
||||
OBJS = ${SRCS:.c=.o}
|
||||
|
||||
|
BIN
checker_linux
BIN
checker_linux
Binary file not shown.
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/08 18:27:58 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/11/09 17:13:11 by cchauvet ### ########.fr */
|
||||
/* Updated: 2022/12/02 21:39:08 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
@ -1,29 +0,0 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_bit_finder.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/23 17:31:10 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/11/30 20:07:51 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "pushswap.h"
|
||||
|
||||
int ft_bit_finder_left(int big, int tofind)
|
||||
{
|
||||
int i;
|
||||
|
||||
i = (int) sizeof(int) * 8 - 1;
|
||||
while (i != 0 && ((big >> i) & 1) != tofind)
|
||||
i--;
|
||||
return (sizeof(int) * 8 - i - 1);
|
||||
}
|
||||
|
||||
|
||||
int ft_bit_finder_right(int big, int tofind)
|
||||
{
|
||||
return ((int) sizeof(int) * 8 - 1 - ft_bit_finder_left(big, tofind));
|
||||
}
|
BIN
ft_bit_finder.o
BIN
ft_bit_finder.o
Binary file not shown.
@ -1,31 +1,29 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_get_bit_max.c :+: :+: :+: */
|
||||
/* ft_bitlen.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/28 16:22:14 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/11/29 15:10:54 by cchauvet ### ########.fr */
|
||||
/* Created: 2022/12/06 13:25:38 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/12/06 13:28:14 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "pushswap.h"
|
||||
|
||||
int ft_get_bit_max(int *tab)
|
||||
unsigned int ft_bitlen(unsigned int nb)
|
||||
{
|
||||
int i;
|
||||
int max;
|
||||
unsigned int i;
|
||||
unsigned int y;
|
||||
|
||||
if (tab[0] == -1)
|
||||
return (INT_MIN);
|
||||
max = tab[0];
|
||||
i = 1;
|
||||
while (tab[i] != -1)
|
||||
i = 0;
|
||||
y = 0;
|
||||
while (i < sizeof(unsigned int) * 8)
|
||||
{
|
||||
if (ft_bit_finder_left(tab[i], 1) > ft_bit_finder_left(max, 1))
|
||||
max = tab[i];
|
||||
if (nb >> i & 1)
|
||||
y = i;
|
||||
i++;
|
||||
}
|
||||
return (max);
|
||||
return (y);
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_get_bit_min.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/28 16:22:14 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/11/29 15:10:03 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "pushswap.h"
|
||||
|
||||
int ft_get_bit_min(int *tab)
|
||||
{
|
||||
int i;
|
||||
int min;
|
||||
|
||||
if (tab[0] == -1)
|
||||
return (INT_MIN);
|
||||
min = tab[0];
|
||||
i = 1;
|
||||
while (tab[i] != -1)
|
||||
{
|
||||
if (ft_bit_finder_right(tab[i], 1) < ft_bit_finder_right(min, 1))
|
||||
min = tab[i];
|
||||
i++;
|
||||
}
|
||||
return (min);
|
||||
}
|
18
ft_get_max.c
18
ft_get_max.c
@ -6,13 +6,13 @@
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/14 16:31:57 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/11/28 18:07:53 by cchauvet ### ########.fr */
|
||||
/* Updated: 2022/12/02 20:33:17 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "pushswap.h"
|
||||
|
||||
int ft_get_max_index(int *tab, int size)
|
||||
int ft_get_max_index(long int *tab, int size)
|
||||
{
|
||||
int max;
|
||||
int i;
|
||||
@ -28,7 +28,17 @@ int ft_get_max_index(int *tab, int size)
|
||||
return (max);
|
||||
}
|
||||
|
||||
int ft_get_max(int *tab, int size)
|
||||
int ft_get_max(unsigned int *tab)
|
||||
{
|
||||
return (tab[ft_get_max_index(tab, size)]);
|
||||
unsigned int max;
|
||||
|
||||
max = *tab;
|
||||
tab++;
|
||||
while (*tab != STOP_VALUE)
|
||||
{
|
||||
if (*tab > max)
|
||||
max = *tab;
|
||||
tab++;
|
||||
}
|
||||
return (max);
|
||||
}
|
||||
|
BIN
ft_get_max.o
BIN
ft_get_max.o
Binary file not shown.
BIN
ft_get_min.o
BIN
ft_get_min.o
Binary file not shown.
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/29 14:41:08 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/12/01 17:03:47 by cchauvet ### ########.fr */
|
||||
/* Updated: 2022/12/06 13:30:52 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -16,10 +16,10 @@ int ft_is_sorted(unsigned int *tab)
|
||||
{
|
||||
int i;
|
||||
|
||||
i = 0;
|
||||
i = 1;
|
||||
while (tab[i] != STOP_VALUE)
|
||||
{
|
||||
if (tab[1] != 0)
|
||||
if (tab[i] != tab[i - 1] + 1)
|
||||
return (0);
|
||||
i++;
|
||||
}
|
||||
|
BIN
ft_is_sorted.o
BIN
ft_is_sorted.o
Binary file not shown.
BIN
ft_isnum.o
BIN
ft_isnum.o
Binary file not shown.
4
ft_p.c
4
ft_p.c
@ -6,13 +6,13 @@
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/09 16:38:34 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/12/01 16:17:17 by cchauvet ### ########.fr */
|
||||
/* Updated: 2022/12/06 17:22:35 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "pushswap.h"
|
||||
|
||||
void ft_p(unsigned *tab_src, unsigned *tab_dst)
|
||||
void ft_p(unsigned int *tab_src, unsigned int *tab_dst)
|
||||
{
|
||||
int size_src;
|
||||
int size_dst;
|
||||
|
BIN
ft_putstr.o
BIN
ft_putstr.o
Binary file not shown.
10
ft_r.c
10
ft_r.c
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/28 16:50:03 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/12/01 17:10:17 by cchauvet ### ########.fr */
|
||||
/* Updated: 2022/12/01 17:42:30 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -27,11 +27,5 @@ static void ft_r(unsigned int *tab)
|
||||
void ft_ra(unsigned int *tab)
|
||||
{
|
||||
ft_r(tab);
|
||||
ft_putstr("rra\n");
|
||||
}
|
||||
|
||||
void ft_rb(unsigned int *tab)
|
||||
{
|
||||
ft_r(tab);
|
||||
ft_putstr("rb\n");
|
||||
ft_putstr("ra\n");
|
||||
}
|
||||
|
29
ft_radix.c
29
ft_radix.c
@ -6,38 +6,31 @@
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/15 18:16:31 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/12/01 17:13:35 by cchauvet ### ########.fr */
|
||||
/* Updated: 2022/12/06 17:22:52 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "pushswap.h"
|
||||
|
||||
void ft_radix_sort(unsigned *tab_a, unsigned *tab_b)
|
||||
void ft_radix_sort(unsigned int *tab_a, unsigned int *tab_b)
|
||||
{
|
||||
int tab_index;
|
||||
int loop_index;
|
||||
unsigned int i;
|
||||
unsigned int y;
|
||||
|
||||
while (!ft_is_sorted(tab_a))
|
||||
i = 0;
|
||||
while (!ft_is_sorted(tab_a) && i < sizeof(unsigned int) * 8)
|
||||
{
|
||||
tab_index = ft_tablen(tab_a) - 1;
|
||||
loop_index = tab_index;
|
||||
while (loop_index >= 0 && !ft_is_sorted(tab_a))
|
||||
y = ft_tablen(tab_a);
|
||||
while (0 < y && (!ft_is_sorted(tab_a) && !ft_tablen(tab_b)))
|
||||
{
|
||||
if (tab_a[tab_index] % 2 == 1)
|
||||
{
|
||||
if (((tab_a[ft_tablen(tab_a) - 1] >> i) & 1) == 1)
|
||||
ft_pb(tab_a, tab_b);
|
||||
tab_index--;
|
||||
}
|
||||
else
|
||||
ft_ra(tab_a);
|
||||
loop_index--;
|
||||
y--;
|
||||
}
|
||||
while (tab_b[0] != STOP_VALUE)
|
||||
ft_pa(tab_a, tab_b);
|
||||
tab_index = ft_tablen(tab_a);
|
||||
while (--tab_index >= 0 && !ft_is_sorted(tab_a))
|
||||
tab_a[tab_index] = tab_a[tab_index] >> 1;
|
||||
i++;
|
||||
}
|
||||
free(tab_a);
|
||||
free(tab_b);
|
||||
}
|
||||
|
BIN
ft_radix.o
BIN
ft_radix.o
Binary file not shown.
18
ft_sort.c
18
ft_sort.c
@ -6,19 +6,19 @@
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/08 19:47:56 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/12/01 17:00:04 by cchauvet ### ########.fr */
|
||||
/* Updated: 2022/12/06 17:27:05 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "pushswap.h"
|
||||
|
||||
static unsigned int *ft_values_simplifier(int *tab_in, int size)
|
||||
static t_tab ft_values_simplifier(long int *tab_in, int size)
|
||||
{
|
||||
int i;
|
||||
unsigned int *out;
|
||||
int max_index;
|
||||
|
||||
out = malloc(sizeof(int) * (size + 1));
|
||||
out = malloc(sizeof(unsigned int) * (size + 1));
|
||||
if (out == NULL)
|
||||
{
|
||||
free(tab_in);
|
||||
@ -28,8 +28,8 @@ static unsigned int *ft_values_simplifier(int *tab_in, int size)
|
||||
while (i < size)
|
||||
{
|
||||
max_index = ft_get_max_index(tab_in, size);
|
||||
out[max_index] = (size - i);
|
||||
tab_in[max_index] = INT_MIN;
|
||||
out[max_index] = size - i - 1;
|
||||
tab_in[max_index] = LONG_MIN;
|
||||
i++;
|
||||
}
|
||||
out[size] = STOP_VALUE;
|
||||
@ -37,9 +37,9 @@ static unsigned int *ft_values_simplifier(int *tab_in, int size)
|
||||
return (out);
|
||||
}
|
||||
|
||||
static unsigned int *ft_tab_init(int *tab_in, int size, unsigned **tab_a, unsigned **tab_b)
|
||||
unsigned int *ft_tab_init(long *tab_in, int size, t_tab *tab_a, t_tab*tab_b)
|
||||
{
|
||||
*tab_b = malloc(sizeof(int) * (size + 1));
|
||||
*tab_b = malloc(sizeof(unsigned int) * (size + 1));
|
||||
*tab_a = ft_values_simplifier(tab_in, size);
|
||||
if (tab_a == NULL || tab_b == NULL)
|
||||
{
|
||||
@ -52,7 +52,7 @@ static unsigned int *ft_tab_init(int *tab_in, int size, unsigned **tab_a, unsign
|
||||
return (*tab_a);
|
||||
}
|
||||
|
||||
void ft_sort(int *tab_in, int size_a)
|
||||
void ft_sort(long int *tab_in, int size_a)
|
||||
{
|
||||
unsigned int *tab_a;
|
||||
unsigned int *tab_b;
|
||||
@ -62,4 +62,6 @@ void ft_sort(int *tab_in, int size_a)
|
||||
if (ft_tab_init(tab_in, size_a, &tab_a, &tab_b) == NULL)
|
||||
return ;
|
||||
ft_radix_sort(tab_a, tab_b);
|
||||
free(tab_a);
|
||||
free(tab_b);
|
||||
}
|
||||
|
28
ft_split.c
28
ft_split.c
@ -6,11 +6,11 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/10/05 19:04:34 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/10/28 19:23:45 by cchauvet ### ########.fr */
|
||||
/* Updated: 2022/12/06 17:28:21 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libft.h"
|
||||
#include "pushswap.h"
|
||||
|
||||
static void *ft_cancel(char **tab, size_t len)
|
||||
{
|
||||
@ -29,7 +29,29 @@ static void *ft_cancel(char **tab, size_t len)
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
static size_t ft_seglen(const char *s, char c)
|
||||
char *ft_substr(char const *s, unsigned int start, size_t len)
|
||||
{
|
||||
ssize_t size;
|
||||
char *ptr;
|
||||
|
||||
if (s == NULL)
|
||||
return (NULL);
|
||||
size = ft_strlen(s);
|
||||
size -= start;
|
||||
if (size < 0)
|
||||
size = 0;
|
||||
if ((size_t)size > len)
|
||||
size = len;
|
||||
ptr = malloc((size + 1) * sizeof(char));
|
||||
if (ptr == NULL)
|
||||
return (NULL);
|
||||
ptr[size] = '\0';
|
||||
while (size-- > 0)
|
||||
ptr[size] = s[start + size];
|
||||
return (ptr);
|
||||
}
|
||||
|
||||
size_t ft_seglen(const char *s, char c)
|
||||
{
|
||||
size_t len;
|
||||
|
||||
|
@ -1,34 +1,23 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_get_min.c :+: :+: :+: */
|
||||
/* ft_strlen.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/15 13:20:22 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/11/28 16:46:47 by cchauvet ### ########.fr */
|
||||
/* Created: 2022/12/06 17:28:28 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/12/06 17:30:36 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "pushswap.h"
|
||||
|
||||
int get_min_index(int *tab, int size)
|
||||
size_t ft_strlen(const char *s)
|
||||
{
|
||||
int i;
|
||||
int min;
|
||||
|
||||
min = 0;
|
||||
i = 1;
|
||||
while (i < size)
|
||||
{
|
||||
if (tab[min] > tab[i])
|
||||
min = i;
|
||||
i = 0;
|
||||
while (s[i] != '\0')
|
||||
i++;
|
||||
}
|
||||
return (min);
|
||||
}
|
||||
|
||||
int get_min(int *tab, int size)
|
||||
{
|
||||
return (tab[get_min_index(tab, size)]);
|
||||
return (i);
|
||||
}
|
BIN
ft_tablen.o
BIN
ft_tablen.o
Binary file not shown.
8
main.c
8
main.c
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/09 17:10:47 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/11/30 14:13:09 by cchauvet ### ########.fr */
|
||||
/* Updated: 2022/12/04 19:44:25 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -14,10 +14,10 @@
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
int i;
|
||||
int *tab_a;
|
||||
int i;
|
||||
long int *tab_a;
|
||||
|
||||
tab_a = malloc(argc * sizeof(int));
|
||||
tab_a = malloc(argc * sizeof(long int));
|
||||
if (tab_a == NULL)
|
||||
return (1);
|
||||
i = 1;
|
||||
|
18
pushswap.h
18
pushswap.h
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/08 18:19:44 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/12/01 16:51:27 by cchauvet ### ########.fr */
|
||||
/* Updated: 2022/12/06 17:30:20 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -18,18 +18,19 @@
|
||||
# define STOP_VALUE 4294967295
|
||||
|
||||
int ft_isnum(char *str);
|
||||
size_t ft_strlen(const char *s);
|
||||
int ft_atoi(char *str);
|
||||
void ft_putstr(char *str);
|
||||
char **ft_split(const char *s, char c);
|
||||
|
||||
void ft_sort(int *tab, int size);
|
||||
int ft_get_max_index(int *tab, int len);
|
||||
int ft_get_max_index(int *tab, int len);
|
||||
int ft_get_min_index(int *tab, int len);
|
||||
int ft_get_min_index(int *tab, int len);
|
||||
void ft_sort(long int *tab, int size);
|
||||
|
||||
int ft_tablen(unsigned int *tab);
|
||||
int ft_is_sorted(unsigned int *in);
|
||||
int ft_get_max_index(long int *tab, int size);
|
||||
|
||||
int ft_get_max(unsigned int *tab);
|
||||
int ft_tablen(unsigned int *tab);
|
||||
int ft_is_sorted(unsigned int *in);
|
||||
unsigned int ft_bitlen(unsigned int nb);
|
||||
|
||||
void ft_radix_sort(unsigned int *tab_a, unsigned int *tab_b);
|
||||
|
||||
@ -39,4 +40,5 @@ void ft_pb(unsigned int *tab_a, unsigned int *tab_b);
|
||||
void ft_ra(unsigned int *tab_a);
|
||||
void ft_rb(unsigned int *tab_b);
|
||||
|
||||
typedef unsigned int * t_tab;
|
||||
#endif
|
||||
|
52
test.c
52
test.c
@ -1,52 +0,0 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* test.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/11/23 16:43:32 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/11/29 17:11:41 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include <stdio.h>
|
||||
#include "pushswap.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
int tab_a[5] = {0,1,2,3,-1};
|
||||
int tab_b[5] = {-1};
|
||||
int i;
|
||||
|
||||
i = 0;
|
||||
printf("a: ");
|
||||
while (tab_a[i] != -1)
|
||||
{
|
||||
printf("%d, ", tab_a[i]);
|
||||
i++;
|
||||
}
|
||||
printf("\nb: ");
|
||||
i = 0;
|
||||
while (tab_b[i] != -1)
|
||||
{
|
||||
printf("%d, ", tab_b[i]);
|
||||
i++;
|
||||
}
|
||||
printf("\n");
|
||||
ft_pa(tab_a, tab_b);
|
||||
i = 0;
|
||||
printf("a: ");
|
||||
while (tab_a[i] != -1)
|
||||
{
|
||||
printf("%d, ", tab_a[i]);
|
||||
i++;
|
||||
}
|
||||
printf("\nb: ");
|
||||
i = 0;
|
||||
while (tab_b[i] != -1)
|
||||
{
|
||||
printf("%d, ", tab_b[i]);
|
||||
i++;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user