Not working radix

This commit is contained in:
David Gailleton
2026-01-07 14:50:04 +00:00
parent 95577e5f02
commit 6942548108
5 changed files with 110 additions and 7 deletions

View File

@@ -6,7 +6,7 @@
/* By: mteriier <mteriier@student.lyon42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/12/22 12:33:58 by mteriier #+# #+# */
/* Updated: 2025/12/22 12:34:35 by mteriier ### ########.fr */
/* Updated: 2026/01/07 10:49:03 by dgaillet ### ########lyon.fr */
/* */
/* ************************************************************************** */
@@ -19,14 +19,15 @@
int test1(int argc, char **argv)
{
t_stacks *piles;
t_tab *preset;
//t_tab *preset;
piles = NULL;
if (argc > 1)
{
piles = init_big_stacks(argc, argv);
preset = get_tabs(piles->a, range_bucket(piles->a));
bucket_algo(piles, preset, range_bucket(piles->a));
//preset = get_tabs(piles->a, range_bucket(piles->a));
//bucket_algo(piles, preset, range_bucket(piles->a));
radix(piles);
}
if (piles->a)
stack_clear_all(piles->a, piles->a);