/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* PmergeMe.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/06/04 13:27:20 by adjoly #+# #+# */ /* Updated: 2025/06/04 13:45:07 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include #include #include #include #include #define auto __auto_type #define range(x) \ x.begin(); \ it != x.end(); \ it++ std::vector parseInput(int argc, char **argv); template void printContainer(const Container &container); void sortAndTime(std::vector &vec, std::deque &deq); template void _fordJohnsonSort(Container &container); template void _binaryInsert(Container &sorted, int value);