资源简介

压缩文档里包括源代码和PASCAL词法分析器的设计要求等。

资源截图

代码片段和文件信息

// cifa.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
/*************************************
*     pascal 简单词法分析器           *
*     金成   
**************************************/
#include
#include
#include      /*用到判断字符的函数*/
#include     /*复制字符串用*/

/********************************************************
*          定义数据结构  (使用全局变量记录)           *
*********************************************************/

char ch;                       /* 当前处理字符 */
char *keywords[] = {“begin“ “end“ “if“ “then“ 
“while“ “do“ “else“ “and“ “not“ “or“}; /* 关键字 */
char sinSep[] = {‘+‘ ‘-‘ ‘*‘ ‘;‘ ‘(‘ ‘)‘}; /* 单字符分界符 */
char *douSep[] = {“:=“ “<=“ “>=“ “<>“ “/*“}; /* 双字符分界符 */
const int k

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4692  2009-05-31 04:26  cifa\cifa.cpp

     文件       4512  2009-05-30 21:19  cifa\cifa.dsp

     文件        533  2009-05-30 21:19  cifa\cifa.dsw

     文件      50176  2009-05-31 04:26  cifa\cifa.ncb

     文件      54784  2009-05-31 04:26  cifa\cifa.opt

     文件       1302  2009-05-31 04:25  cifa\cifa.plg

     文件       1196  2009-05-30 21:19  cifa\ReadMe.txt

     文件        291  2009-05-30 21:19  cifa\StdAfx.cpp

     文件        667  2009-05-30 21:19  cifa\StdAfx.h

     目录          0  2009-05-31 08:53  cifa

     文件      27648  2009-06-02 22:43  词法分析程序实现.doc

----------- ---------  ---------- -----  ----

               145801                    11


评论

共有 条评论