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 - a smart hybrid algo combining elements of the chunk - and the dual-entry circular insertion sort - for large stacks (100/500); also here, a recursive strategy for 5 elements.
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