📄 sort.h
字号:
//---------------------------------------------------------------------------
#ifndef SortH
#define SortH
//---------------------------------------------------------------------------
#include <Classes.hpp>
enum SortAlgorithm{BubSort,SelSort,InsSort};
//---------------------------------------------------------------------------
class Sort : public TThread
{
private:
protected:
void __fastcall Execute();
public:
__fastcall Sort(int i,bool CreateSuspended);
// void __fastcall SetSortFalg(int i);
SortAlgorithm SortFlag; //排序方法标志
};
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -