资源简介
求上下文无关文法中求出导空符,运用c语言程序来编写其源代码。
代码片段和文件信息
#include
typedef struct onep
{
char l;
char r[100];
int length;
}one;
void main()
{
one production[100];
one temp;
int e[100];
int change;
char ch;
int vikjrem;
v=i=j=k=0;
change=1;
temp.length=0;
printf(“please input char:\n“);
ch=getchar();
/*将符号串输入到数组production中*/
while(ch!=‘#‘)
{
if(ch>=‘a‘&&ch<=‘z‘||ch>=‘A‘&&ch<=‘Z‘&&temp.length==0)
{
temp.l=ch;
}
ch=getchar();
if(ch==‘>‘)
{
ch=getchar();
while(ch!=‘‘&&ch!=‘#‘)
{
temp.r[temp.length]=ch;
temp.length++;
- 上一篇:基于Socket的简单的2人对打游戏源代码(VC)
- 下一篇:c语言实现图的拓扑排序
评论
共有 条评论