selectionsort.h
来自「ssd5 op5的答案」· C头文件 代码 · 共 18 行
H
18 行
#ifndef SELECTIONSORT_H
#define SELECTIONSORT_H
#include "sort.h"
class selectionsort : public sort
{
protected:
void init (int how_many, int workload_type);
public:
selectionsort(int how_many, int workload_type);
void sortNumbers();
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?