mirror of
https://github.com/lWolvesl/leetcode.git
synced 2026-01-13 02:38:37 +08:00
12 lines
150 B
C
12 lines
150 B
C
#include <stdio.h>
|
|
|
|
void swap(int* a, int* b) {
|
|
int temp = *a;
|
|
*a = *b;
|
|
*b = temp;
|
|
}
|
|
|
|
void QuickSort(int *arr, int low, int high)
|
|
{
|
|
|
|
} |