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

📄 mcprocview.h

📁 人工智能实验---求解传教士与野人问题,并画出状态图做动态演示.
💻 H
字号:
// MCProcView.h : interface of the CMCProcView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_MCPROCVIEW_H__0E8C82A0_D1A7_487F_94A8_707341909EB6__INCLUDED_)
#define AFX_MCPROCVIEW_H__0E8C82A0_D1A7_487F_94A8_707341909EB6__INCLUDED_

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

#include "MCProcDoc.h"


struct Node
{
	int j;
	bool b;
	Node* next;
};

struct ST
{
	int m;
	int c;
	bool b;
};

class CMCProcView : public CScrollView 
{
protected: // create from serialization only
	CMCProcView();
	DECLARE_DYNCREATE(CMCProcView)

// Attributes
public:
	CMCProcDoc* GetDocument();
    void InitialData();
// Operations
public:
	int m_N;
	int m_V;
	ST m_stL;
	ST m_stR;
	int m_i;
// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMCProcView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	virtual void OnInitialUpdate();
	//}}AFX_VIRTUAL

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

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CMCProcView)
	afx_msg void OnSolve();
	afx_msg void OnTimer(UINT nIDEvent);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in MCProcView.cpp
inline CMCProcDoc* CMCProcView::GetDocument()
   { return (CMCProcDoc*)m_pDocument; }
#endif

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

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

#endif // !defined(AFX_MCPROCVIEW_H__0E8C82A0_D1A7_487F_94A8_707341909EB6__INCLUDED_)

⌨️ 快捷键说明

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