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

https://github.com/mxssl/quicksortgolang

Quick Sort implementation in Go (Golang)
https://github.com/mxssl/quicksortgolang

algorithm go golang quick-sort quicksort quicksort-algorithm

Last synced: 3 months ago
JSON representation

Quick Sort implementation in Go (Golang)

Awesome Lists containing this project

README

        

# Quick Sort

[Quick Sort](https://en.wikipedia.org/wiki/Quicksort) implementation in Go (Golang).

```
Time Complexity:
Worst: O(n^2)
Best: O(n log(n))
Average: O(n log(n))
```

`Space Complexity: O(log(n))`

```Bash
$ go test -v -cover ./...
=== RUN TestCase
--- PASS: TestCase (0.00s)
PASS
coverage: 91.7% of statements
ok github.com/mxssl/QuickSortGolang 0.005s coverage: 91.7% of statements
```