说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 词法分析器
1)  lexical analyzer
词法分析器
1.
The SpecC lexical analyzer is the basic module of the SpecC synthesizer,and its efficiency is one of the most important factors that affect the efficiency of the SpecC synthesizer.
SpecC词法分析器作为SpecC综合器的基础模块,其性能是影响SpecC综合器性能的关键因素之一,而SpecC综合器是实现系统级设计综合自动化必不可少的硬件系统开发工具。
2.
By analyzing an open source web search engine Nutch,a scalable lexical analyzer is implemented based on JavaCC.
在剖析开源搜索引擎Nutch的源代码结构的基础上,基于JavaCC实现了一个可扩展的词法分析器并将其与Nutch集成,构建了一个支持智能中文分词的互联网搜索引擎Nutch-Enhanced。
3.
On the basis of the research,the lexical analyzer is designed through the object-oriented method C++ and the relative information of features is extracted from the STEP neutral file by using the method of object-oriented programming.
本文通过采用STEP标准中性交换文件作为承载实体信息的载体,对STEP中性文件的语法特点、几何信息元素、拓扑关系等进行了分析,采用面向对象的编程方法设计词法分析器,直接从STEP中性文件中提取特征的相关信息,并转换成内存中的中间文件格式为特征的识别提供信息源。
2)  lexical analyzer design
词法分析器设计
3)  lexical analysis
词法分析
1.
Statistical Chinese Lexical Analysis and Its Reinforcement Learning Mechanism;
统计中文词法分析及其强化学习机制的研究
2.
The study of lexical analysis for military documents is the base of documents automatic processing.
利用数据融合方法建立了2个和3个成熟汉语分词系统构成的词法分析器,并通过仿真分析对2种方法进行了比较,最终得出采用多个成熟的汉语分词系统进行作战命令的分词是可行和有效的。
3.
As long as the original algorithm of syntax analysis is slightly modified,it can be used for lexical analysis.
以一个模型语言为例,系统地介绍了使用LR分析表的词法分析器工作原理,以及词法分析器所使用的LR分析表最小化方法。
4)  morphology analysis
词法分析
1.
For solving morphology analysis method of different expressions including digits and numerals for computer translation, this paper analyzes of correlative languages materials and sums up characters of such expressions.
为解决计算机翻译中的数字和数词不同表达形式的词法分析方法 ,在分析较多的相关语料基础上 ,总结出了一些表达形式的一般特点 ,提出了基于动态模板匹配和知识库的处理策略 ,同时也介绍了实现其词法分析过程中的方法和技术 。
2.
To resolve morphology analysis problem of expressions including numerals for Internet Real-time Browsing Translation System, this paper analyzes correlative language materials and sums up characters of such expressions.
在实时浏览翻译网站的机器翻译服务系统中,为解决有关数字和数词的语言表达形式的词法分析问题,通过分析相关语料,总结出此类语言形式的一般性特点,提出了基于动态模板匹配和知识库的处理策略,并介绍了实现其词法分析过程的步骤和方法。
3.
Source language analysis is core of MT, and includes morphology analysis, parsing and semantic analysis.
源语分析是机器翻译的核心,包括词法分析、句法分析和语义分析。
5)  morphological analysis
词法分析
1.
The author of the essay tries to offer a useful and effective way of vocabulary teaching and learning through morphological analysis esp.
针对词法分析即对词根、词源的分析在词汇学习方面所起的作用进行探讨,旨在对英语教学中词汇的学习与词汇量的扩大有所帮助,从而使词汇教学能够真正起到“基石”的作用。
2.
Based on MatLink, a English-Chinese machine translation system, the paper describes the linguistic knowledge and its representation for morphological analysis, and introduces the algorithm for processing such linguistic knowledge.
词法分析是自然语言处理系统首要的词汇级语言分析模块。
3.
The system first employs character-based Chinese morphological analysis for segmenting Chinese texts into words,and then presents a method based on structure information of constituent character.
系统首先提出基于字信息的汉语词法分析方法,对汉语网页中文本进行分词处理,然后利用基于组成字结构信息的方法发现新词。
6)  word frequency analysis
词频分析法
1.
This paper firstly defines the key words in the field of Chinese literature knowledge management in 2006,and makes a comparison with other years on research focus and application in the knowledge management field by using word frequency analysis method.
用词频分析法对比分析2006年与往年知识管理的研究热点和应用领域。
2.
According to the word frequency analysis, this paper finds the hot research areas of domestic educational technology from 2004 to 2006, which include the distance education, educational technology, information technology, educational informatization, vocational education, network education, curriculum integration, teaching design, teaching mode, and network courses, etc.
根据词频分析法,得出2004—2006年间国内教育技术学的研究热点,包括远程教育、教育技术、信息技术、教育信息化、职业教育、网络教育、课程整合、教学设计、教学模式、网络课程等,对这些研究热点的背景及意义进行了分析,认为这些研究热点与社会的环境及教育的发展密切相关。
补充资料:词法分析


词法分析
lexical analysis

C一fQ fenx-词法分析(橄ical analysis)逐个读人源程序字符并按照构词规则切分成一列单词,再转换成词标流的过程。单词是语言中具有独立意义的最小单位,包括保留字、标识符、运算符、标点符号和常量等。词标是单词的机内表示,其格式由实现系统规定。 词法分析是编译过程中的一个阶段,在语法分析前进行。可以作为单独的一遍,将源程序转换成词标流供下一遍使用。也可以和语法分析结合在一起作为一遍,由语法分析程序调用词法分析程序来获得当前词标供语法分析程序使用。 在词法分析程序的设计和实现中,首先需要描述和刻画语言中的原子单位—单词,其次需要识别单词和执行某些相关的动作。描述程序设计语言的词法的机制是3型文法和正则表达式,识别机制是有穷状态自动机。 在词法分析过程中,与语法分析无关的单词应预先处理。如为增加易读性而在保留字中引进的任选字,与语法语义分析无关,处理时可掠过,无需产生相应的词标。
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条