An open API service indexing awesome lists of open source software.

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

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