Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 383 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 383 Bytes

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