sort.h

来自「各种排序方法的比较」· C头文件 代码 · 共 25 行

H
25
字号
#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 + =
减小字号Ctrl + -
显示快捷键?