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

https://github.com/agrajak/go-sort

simple sort implementations using golang
https://github.com/agrajak/go-sort

bitonic golang goroutine merge odd-even shell sort

Last synced: 6 months ago
JSON representation

simple sort implementations using golang

Awesome Lists containing this project

README

          

# Go Sort

## Introduction

This is a simple sort implementation for the following sorts.
- Selection Sort
- Median of three Quick Sort
- Shell Sort
- Bitonic Sort (w/, w/o go-routine)
- Odd Even Merge Sort (w/, w/o go-routine)

Using go-routines could worsen the performance of program so I made a empty channels to limit the number of go-routines

## To Do
- Add benchmark