【数据结构】选择排序

#define _CRT_SECURE_NO_WARNINGS
#include

template
void swap(elemType* a, elemType* b)
{
	int tmp = *a;
	*a = *b;
	*b = tmp;
}

//时间复杂度O(N^2),空间复杂度O(1)
void Select_Sort(int* arr, int n)
{
	
	for (int i=0;i

你可能感兴趣的:(数据结构,数据结构,算法,c++)