【数据结构】直接插入排序

#include 
//#include 


void InsertSort(int a[], int n)
{
	int i,j,t;
	for( i=1 ;i=0 && t

你可能感兴趣的:(数据结构)