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.
Push_Swap implementation by evaristoc featuring the Dipole Algo for large stacks (100/500) and a recursive strategy for 5 elements. High-efficiency sorting using dual opposing sequences.
Highly structured algorithmic challenge - to effectively sort a set of integer values in 2 stacks of linked lists with a limited set of instructions to manipulate both stacks