dict.h
来自「人工智能课程设计之二」· C头文件 代码 · 共 23 行
H
23 行
// Dict.h: interface for the CDict class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DICT_H__526703D0_9620_4CE7_ACB5_890606D6B4F1__INCLUDED_)
#define AFX_DICT_H__526703D0_9620_4CE7_ACB5_890606D6B4F1__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CDict
{
public:
CDict();
virtual ~CDict();
char **c[20]; //词库转为按长度存储
int num[20]; //纪录词库中相应长度的单词的数目
void Setdict();
};
#endif // !defined(AFX_DICT_H__526703D0_9620_4CE7_ACB5_890606D6B4F1__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?