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

📄 贝叶斯决策dlg.h

📁 贝叶斯决策解决城市最短路径问题,人工只能实验项目
💻 H
字号:
// 贝叶斯决策Dlg.h : header file
//

#if !defined(AFX_DLG_H__046F3961_911E_4FF3_9534_56EFC420C703__INCLUDED_)
#define AFX_DLG_H__046F3961_911E_4FF3_9534_56EFC420C703__INCLUDED_

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

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

class CMyDlg : public CDialog
{
// Construction
public:
	int Select(double x,double y);
	int Max(double *s,int m);
	CMyDlg(CWnd* pParent = NULL);	// standard constructor
	
	int *n,*master;
	int *x;
	int x0,y0;
	int i,k,f;
	bool select,move;
	void transpose(double *m1,double *m2,int m,int n);
	void mult(double *m1,double *m2,double *result,int i_1,int j_12,int j_2);
	void ivy(double *a,int n);
	double GetValue(double *A,int N);
// Dialog Data
	//{{AFX_DATA(CMyDlg)
	enum { IDD = IDD_MY_DIALOG };
	CListBox	m_List4;
	CListBox	m_List3;
	CListBox	m_List2;
	CListBox	m_List1;
	int		m_Lei;
	int		m_TeZheng;
	CString	m_X;
	double	m_f;
	//}}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();
	virtual void OnOK();
	afx_msg void OnButton1();
	afx_msg void OnSelchangeList1();
	afx_msg void OnSelchangeList2();
	afx_msg void OnSelchangeList3();
	afx_msg void OnButton2();
	afx_msg void OnRadio1();
	afx_msg void OnRadio2();
	afx_msg void OnButton3();
	afx_msg void OnButton4();
	afx_msg void OnMouseMove(UINT nFlags, CPoint point);
	//}}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__046F3961_911E_4FF3_9534_56EFC420C703__INCLUDED_)

⌨️ 快捷键说明

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