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

📄 list.h

📁 1、采用(1)盲目搜索(2)启发式搜索对凯撒密文进行自动解密。 2、对替代法加密的程序进行解密(未完成
💻 H
字号:
#if !defined(AFX_LIST_H__B0B1057D_3928_44AE_A512_94FB665EFD29__INCLUDED_)
#define AFX_LIST_H__B0B1057D_3928_44AE_A512_94FB665EFD29__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#include "Node.h"
#include "AIDlg.h"
#endif // _MSC_VER > 1000
// List.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// List window

class List : public CWnd
{
// Construction
	//friend class CAIDlg;	
public:
	List(){first=0;}
	Node *first;
	bool Empty() const {return first==0;}
	int Length() const;
	int Locate(const CString& x) const;
	void Insert(const CString& x);
// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(List)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~List();

	// Generated message map functions
protected:
	//{{AFX_MSG(List)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

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

#endif // !defined(AFX_LIST_H__B0B1057D_3928_44AE_A512_94FB665EFD29__INCLUDED_)

⌨️ 快捷键说明

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