⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sort.h

📁 各种排序方法的比较
💻 H
字号:
#ifndef sort_h
#define sort_h
#include <iostream>
#include <iterator>
#include <iomanip>
#include <vector>  
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include "sort.h"

using namespace std;
using std::cout;
using std::cin;
using std::endl;

class sort
{
public:
	void fundamental(vector<int> & , int, int, vector<int> &);//for compute fundamental operations of each algorithm
	void execution_time(vector<int> &, int, int, vector<double> &);// for compute the execution time of each algorithm
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -