1、直接插入排序InserTSort()

//直接插入排序InserTSort()
#include
#include
#include
#include
#include
using namespace std;
const int MAXSIZE=501;//待排序数据规模,r[0]保留,实际数组是r[1]---r[500]
//直接插入排序InserTSort()
void InsertSort(int r[],int n)
{
	int i=0;
	int j=0;
	for(i=2;i<=n;i++)
	{
		r[0]=r[i];
		for(j=i-1;r[0]>data[i];
	infile.close();
}
//输出内存数组至外存ordered_data_salary.txt文件
void write_data(int data[])
{
	ofstream outfile("ordered_data_salary.txt",ios::out);
	if(!outfile)
	{
		cerr<<"open ordered_data_salary.txt error!"<


你可能感兴趣的:(C++四大类排序算法)