Skip to content

Creating an algorithm to sort integers using 2 stacks

Notifications You must be signed in to change notification settings

kroharu/push_swap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is a 21 School/Ecole 42 Project

push_swap (Sorting algorithm)

Push_swap is a program that sorts integers on a stack, with a limited set of instructions, using the lowest possible number of actions. Subject can be found here.

Project goals

  • Learn about different algorithms
  • Sort data using specified list of operations
  • Work with stack

To compile and run

Run the following commands in Terminal:

# to build
> make

# to run
> ./push_swap 2 1 3 6 5 8

The program takes as an argument the stack a formatted as a list of integers. The program prints out a list of instructions to sort the stack a.

Available instructions:

sa (swap a): Swap the first 2 elements at the top of stack a. Do nothing if there is only one or no elements.

sb (swap b): Swap the first 2 elements at the top of stack b. Do nothing if there is only one or no elements.

ss : sa and sb at the same time.

pa (push a): Take the first element at the top of b and put it at the top of a. Do nothing if b is empty.

pb (push b): Take the first element at the top of a and put it at the top of b. Do nothing if a is empty.

ra (rotate a): Shift up all elements of stack a by 1. The first element becomes the last one.

rb (rotate b): Shift up all elements of stack b by 1. The first element becomes the last one.

rr : ra and rb at the same time.

rra (reverse rotate a): Shift down all elements of stack a by 1. The last element becomes the first one.

rrb (reverse rotate b): Shift down all elements of stack b by 1. The last element becomes the first one.

rrr : rra and rrb at the same time.

Results (100 tests mean)

4780 operations for 500 numbers
587  operations for 100 numbers

Sorting 100 integers

Push Swap in action

Sorting 250 integers

Push Swap in action

Useful links

About

Creating an algorithm to sort integers using 2 stacks

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published