iblanco-s / push_swap

this projects aims to create a highly efficient sorting algorithm for two stacks with a limited number of instructions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Push_swap

This project aims to create a highly efficient sorting algorithm for two stacks with a limited number of instructions. The algorithm is based on the radix sorting method, but implemented in binary. The project is written in C and does not use any external libraries.

Algorithm Overview 🧑‍💻

The algorithm used in this project is a variation of the radix sort, specifically adapted for binary numbers. It utilizes two stacks to sort the input data. The sorting process is performed in multiple passes, where each pass sorts the numbers based on a specific bit position.

About

this projects aims to create a highly efficient sorting algorithm for two stacks with a limited number of instructions


Languages

Language:C 94.7%Language:Makefile 5.3%