📄 heapsort.h
字号:
// HeapSort.h: interface for the CHeapSort class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_HEAPSORT_H__20FD64E9_D4DF_449C_8A5A_B03894844140__INCLUDED_)
#define AFX_HEAPSORT_H__20FD64E9_D4DF_449C_8A5A_B03894844140__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Sort.h"
class CHeapSort : public CSort
{
public:
void Sort();
CHeapSort();
virtual ~CHeapSort();
int GetState2() const {return State2;}
BOOL GetCanSleep() const {return CanSleep;}
};
#endif // !defined(AFX_HEAPSORT_H__20FD64E9_D4DF_449C_8A5A_B03894844140__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -