https://github.com/taisiabarteneva/sorting_on_stacks
Creating an algorithm of sorting on two stacks
https://github.com/taisiabarteneva/sorting_on_stacks
algorithms-and-data-structures c
Last synced: 5 months ago
JSON representation
Creating an algorithm of sorting on two stacks
- Host: GitHub
- URL: https://github.com/taisiabarteneva/sorting_on_stacks
- Owner: taisiabarteneva
- Created: 2021-12-17T20:07:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-08T16:55:53.000Z (almost 3 years ago)
- Last Synced: 2025-01-11T12:25:55.465Z (6 months ago)
- Topics: algorithms-and-data-structures, c
- Language: C
- Homepage:
- Size: 140 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Push Swap
The goal of a project is to implement a sorting algorithm on a stack using a temporary stackAccording to the rules, only four commands can be used
- swap
- push
- rotate
- reverse## How to build
```
$ make
```
