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

📄 dialogdis.h

📁 BFS、DFS、有向图、无向图中的各种算法的实现
💻 H
字号:
#if !defined(AFX_DIALOGDIS_H__B1CE7B2A_D7C2_4108_B842_7261883B0908__INCLUDED_)
#define AFX_DIALOGDIS_H__B1CE7B2A_D7C2_4108_B842_7261883B0908__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DialogDis.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CDialogDis form view

#ifndef __AFXEXT_H__
#include <afxext.h>
#endif

class CDialogDis : public CFormView
{
protected:
	CDialogDis();           // protected constructor used by dynamic creation
	DECLARE_DYNCREATE(CDialogDis)

// Form Data
public:
	//{{AFX_DATA(CDialogDis)
	enum { IDD = IDD_FORMVIEW2 };
	int		m_narc;
	int		m_nlink;
	int		m_nvertex;
	CString	m_strdfsname;
	CString	m_strbfsname;
	int		m_nyouarc;
	int		m_nyouvertex;
	//}}AFX_DATA

// Attributes
public:

// Operations
public:
	int m_ndfs;
	int m_nbfs;
	CGraphDoc* GetDocument();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CDialogDis)
	public:
	virtual void OnInitialUpdate();
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
	//}}AFX_VIRTUAL

// Implementation
protected:
	virtual ~CDialogDis();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

	// Generated message map functions
	//{{AFX_MSG(CDialogDis)
	afx_msg void OnDfsStart();
	afx_msg void OnDfsNext();
	afx_msg void OnAllVertex();
	afx_msg void OnBfsNext();
	afx_msg void OnBfsStart();
	afx_msg void OnYouAll();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:


};

#ifndef _DEBUG  
inline CGraphDoc* CInputView::GetDocument()
   { return (CGraphDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_DIALOGDIS_H__B1CE7B2A_D7C2_4108_B842_7261883B0908__INCLUDED_)

⌨️ 快捷键说明

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