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

📄 algview.h

📁 同学做的基于贪婪策略的拓扑排序算法可视化演示程序
💻 H
字号:
#pragma once


// CAlgView 视图

class CAlgView : public CView
{
	DECLARE_DYNCREATE(CAlgView)

protected:
	CAlgView();           // 动态创建所使用的受保护的构造函数
	virtual ~CAlgView();

public:
	virtual void OnDraw(CDC* pDC);      // 重写以绘制此视图
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:
	DECLARE_MESSAGE_MAP()
};


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -