mirror of
https://git.wolves.top/wolves/leetcode.git
synced 2025-11-05 01:36:32 +08:00
init
This commit is contained in:
12
24/03/quicksort.c
Normal file
12
24/03/quicksort.c
Normal file
@@ -0,0 +1,12 @@
|
||||
#include <stdio.h>
|
||||
|
||||
void swap(int* a, int* b) {
|
||||
int temp = *a;
|
||||
*a = *b;
|
||||
*b = temp;
|
||||
}
|
||||
|
||||
void QuickSort(int *arr, int low, int high)
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user