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

📄 树dlg.h

📁 办公室局域网模拟 数据结构 办公室局域网模拟 数据结构
💻 H
字号:
// 树Dlg.h : header file
//

#if !defined(AFX_DLG_H__E9A655AE_BA77_4B4B_8841_D13954D855EA__INCLUDED_)
#define AFX_DLG_H__E9A655AE_BA77_4B4B_8841_D13954D855EA__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CMyDlg dialog

typedef int AdjMatrix[10][10];
#define MAX_VERTEX_NUM 10
typedef struct  {
	char vexs[MAX_VERTEX_NUM];                       //顶点表
	AdjMatrix arcs;                                  //邻接矩阵
	int vexnum,arcnum;                               //图的顶点数和弧数
}  MGraph;
class CMyDlg : public CDialog
{
// Construction
public:
	void ShowMGraph(MGraph G);
	void MiniSpanTree_PRIM(MGraph G,char u);
	CString m_stroutput;
	BOOL m_bnewgraph;
	MGraph G;
	void InsertEdge(int v1,int v2,int cost);
	int cost;
	int m_nv2;
	int m_nv1;
	CMyDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CMyDlg)
	enum { IDD = IDD_MY_DIALOG };
	CComboBox	m_cmb2;
	CComboBox	m_cmb1;
	int		m_ncost;
	CString	m_str1;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMyDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CMyDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnButtonInsert();
	afx_msg void OnEnter();
	afx_msg void OnClean();
	afx_msg void OnButton2();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_DLG_H__E9A655AE_BA77_4B4B_8841_D13954D855EA__INCLUDED_)

⌨️ 快捷键说明

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