https://github.com/daniel-191/number-cruncher
A C++ script that sorts numbers via: merge, selection, insertion. bubble and also calculates the: Mean, Mode, Median, Range
https://github.com/daniel-191/number-cruncher
bubble bubble-sort bubblesort cpp insertion insertion-sort insertionsort linux merge merge-sort mergesort number-sorter windows
Last synced: 3 months ago
JSON representation
A C++ script that sorts numbers via: merge, selection, insertion. bubble and also calculates the: Mean, Mode, Median, Range
- Host: GitHub
- URL: https://github.com/daniel-191/number-cruncher
- Owner: Daniel-191
- License: mit
- Created: 2023-09-22T18:43:22.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-25T17:43:24.000Z (5 months ago)
- Last Synced: 2025-05-25T18:45:03.863Z (4 months ago)
- Topics: bubble, bubble-sort, bubblesort, cpp, insertion, insertion-sort, insertionsort, linux, merge, merge-sort, mergesort, number-sorter, windows
- Language: C++
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Supported Systems
| System | Supported |
| ------ | :-------: |
| Windows | ✅ |
| Linux | ✅ |
| Mac | Untested |# Features
- Merge sort
- Insertion sort
- Bubble sort# Installation
1. Download latest release and run the precompiled exe
OR
1. `git clone https://github.com/Daniel-191/number-cruncher`
2. `cd number-cruncher`
3. `g++ main.cpp -o main` OR run `compile.bat`
# Tutorials
Put your numbers to be sorted in numbers.txt. Once the program is finished it will save the sorted numbers into a new file called sorted.txt
# Formatting
### Example 1: Space-Separated
23 12 5 87 34 76 99 1
### Example 2: New Line-Separated
23
12
5
87...
### Example 3: Comma-Separated
23,12,5,87,34,76,99,1