uccser/cs-field-guide

View on GitHub
csfieldguide/chapters/content/en/glossary/quicksort.md

Summary

Maintainability
Test Coverage
# Quicksort

Order the items in a list so that each item is appropriately before or after a {glossary-link term="pivot"}pivot{glossary-link end}.
The pivot is now in the correct location.
Repeat the process for the items before the pivot, and the items after the pivot.