mirror of
https://git.wolves.top/wolves/leetcode.git
synced 2025-11-05 09:46:32 +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)
|
|
{
|
|
|
|
} |