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

📄 sort.h

📁 关于书籍《Borland c++Builder工程实践》的源代码
💻 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 + -