Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 1.46 KB

README.md

File metadata and controls

31 lines (26 loc) · 1.46 KB

push_swap (Complexity 60 hours)

bnidia's 42 push_swap Score

This project involves sorting data on a stack, with a limited set of instructions, and the smallest number of moves. To make this happen, you will have to manipulate various sorting algorithms and choose the most appropriate solution(s) for optimized data sorting.

push_swap_demo

Этот проект включает в себя сортировку данных в стеке с ограниченным набором инструкций и наименьшим количеством ходов. Чтобы это произошло, вам придется манипулировать различными алгоритмами сортировки и выбирать наиболее подходящее решение (решения) для оптимизированной сортировки данных.

How to build and run

Download to your computer, go to the directory push_swap, compile with make and then run push_swap with unique numbers.

git clone https://github.com/bnidia/push_swap.git
cd push_swap
make
./push_swap 5 10 3 0 -12
>ra
>ra
>pb
>ra
>ra
>pb
>sa
>rra
>pa
>pa
>ra

Instructions you can see on this picture

picture