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

📄 index.h

📁 CEL代码的中间编译
💻 H
字号:
// INDEX.h: interface for the INDEX class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_INDEX_H__232890CF_74A8_4F5C_8622_3546D6E80BF1__INCLUDED_)
#define AFX_INDEX_H__232890CF_74A8_4F5C_8622_3546D6E80BF1__INCLUDED_

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

class INDEX  
{
public:
	CString Takeword(CString string,int address);
	CString IndexWork(CString word);
	CString FindData(CString word);
	CString GetData(int address);		
	CString Getstring();
	CString Getword(int address);
	CString Getword(CString outstring,int address);	
	CString GetIndexFirstword(char ch);
    void AddIndex(CString word);
	INDEX();
	virtual ~INDEX();


protected:
	int indexword[26];
	int index[26];//记录在CString中的地址
	int sum;
    void Insertstring(int index,CString insertstring);
	void Insertsubstring(int nowindex,CString sData);
	CString string;
};

#endif // !defined(AFX_INDEX_H__232890CF_74A8_4F5C_8622_3546D6E80BF1__INCLUDED_)

⌨️ 快捷键说明

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