mirror of
				https://git.wolves.top/wolves/leetcode.git
				synced 2025-11-04 17:26: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)
 | 
						|
{
 | 
						|
    
 | 
						|
} |