Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Jack-Lee-Hiter/AlgorithmsByPython
/ quickSort
Function
quickSort
QuickSort.py:3–4 ·
view source on GitHub ↗
(alist)
Source
from the content-addressed store, hash-verified
1
# coding: utf-8
2
3
def
quickSort(alist):
4
quickSortHelper(alist, 0, len(alist)-1)
5
6
def
quickSortHelper(alist, first, last):
7
if
first < last:
Callers
1
QuickSort.py
File · 0.85
Calls
1
quickSortHelper
Function · 0.85
Tested by
no test coverage detected