You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
push_swap: "turk algorithm" An algorithmic C project focused on sorting data with a limited set of instructions. The goal is to sort a stack of integers using only two stacks ('A' and 'B') and a specific set of rotation, swap, and push operations, aiming for the lowest possible number of moves.
A stack-based sorting program in C that uses optimized quick sort and stack partitioning to efficiently sort integers with minimal operations. Developed for the 42 curriculum to strengthen skills in algorithms and data structures.
This project challenges you to efficiently sort data on a stack using a limited set of instructions and minimizing the number of moves. Explore and implement various sorting algorithms to find the best solutions for optimized data sorting.