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

📄 interpatitionview.h

📁 这是一个算法当中的一个关于整数划分的程序
💻 H
字号:
// INTERPATITIONView.h : interface of the CINTERPATITIONView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_INTERPATITIONVIEW_H__EE09D4B6_E9EE_480A_B87B_D1EF20C2537D__INCLUDED_)
#define AFX_INTERPATITIONVIEW_H__EE09D4B6_E9EE_480A_B87B_D1EF20C2537D__INCLUDED_

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

class Element
{
public:
    int    m_Length;
    int  * m_Body;
    class Element * m_Next;

    Element(int Length);
    ~Element();
};

class IntPartSet
{
public:
    int m_Count;
    class Element * m_HeadElements;

    int AddElement(class Element * p);
    IntPartSet();
    ~IntPartSet();
};

class CINTERPATITIONView : public CFormView
{
public:
	class IntPartSet * ShaoIntegerPatition(int n,int k);
	class IntPartSet * WXDIntegerPatition(int n,int m);
	int                DoIt(int WkMode);
protected: // create from serialization only
	CINTERPATITIONView();
	DECLARE_DYNCREATE(CINTERPATITIONView)

public:
	//{{AFX_DATA(CINTERPATITIONView)
	enum{ IDD = IDD_INTERPATITION_FORM };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA

// Attributes
public:
	CINTERPATITIONDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CINTERPATITIONView)
	public:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual void OnInitialUpdate(); // called first time after construct
	//}}AFX_VIRTUAL

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

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CINTERPATITIONView)
	afx_msg void OnButton1();
	afx_msg void OnButton2();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in INTERPATITIONView.cpp
inline CINTERPATITIONDoc* CINTERPATITIONView::GetDocument()
   { return (CINTERPATITIONDoc*)m_pDocument; }
#endif

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

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

#endif // !defined(AFX_INTERPATITIONVIEW_H__EE09D4B6_E9EE_480A_B87B_D1EF20C2537D__INCLUDED_)

⌨️ 快捷键说明

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