有限自动机的构造与识别3

#include<stdio.h>
#define N 30
char str[N]={NULL};
int st[N];
int t=0,k=0,a,t1=0;
struct node//定义一个队列
{
    char data;
    struct node * next;
};
typedef struct node QueueNode;
struct node2//定义一个链队列
{
    QueueNode *front;
    QueueNode *rear;
};
typedef struct node2 Queue;
Queue InitQueue()//初始化队列
{
    Queue Q;
    Q.front=(QueueNode *)malloc(sizeof(QueueNode));
    Q.front->next=NULL;
    Q.rear=Q.front;
    return(Q);
}
Queue InserQ(Queue Q,char x)//x进队列
{
    QueueNode *p;
    p=(QueueNode *)malloc(sizeof(QueueNode));
    p->data=x;
    p->next=NULL;
    Q.rear->next=p;
    Q.rear=p;
    return(Q);
}
Queue DeleteQ(Queue Q)//出队列
{
    int i=t++,j;
    QueueNode *p;
    char y;
    if(Q.front==Q.rear)
    {
        printf("队列为,无法出队列!");//判断队列是否为空
        return(Q);
    }
    p=Q.front->next;
    y=Q.front->next->data;//将队列中的元素赋值给y
    Q.front->next=p->next;
    if(p==Q.rear)
        Q.rear=Q.front;
    str[i]=y;//存储单个字符
    st[k]=i;//存储位置
    if(y==‘ ‘);
    if(y==‘*‘||y==‘|‘)
    {
        //if(y==‘*‘)
            //str[i]=y;
        if(str[0]!=NULL)//如果数组str非空,则输出
            Print(0,str[0]);
        t=0;
        //continue;
    }
   /*if((y>=‘A‘&&y<=‘Z‘)||(y>=‘a‘&&y<=‘z‘))//利用ASCII判断y是否是属于字母,并存储在数组str中
   {
        str[i]=y;
   }*/
   k++;
    free(p);
    return Q;
}
void Print(int i,char y);//调用函数来判断并输出
main()
{
    char x,y;
    Queue p,q;
    p=InitQueue();
    printf("请输入正规式:");
    while(scanf("%c",&x)==1&&x!=‘\n‘)//大神的方法,牛
        p=InserQ(p,x);
    q=p;
    while(p.front!=p.rear)
        p=DeleteQ(p);
    printf("\n该程序由渣渣,没有之一组的代表开发,感谢你使用我的程序!\n");
}
void Print(int i,char y)//调用函数来判断并输出
{
    a=st[i+1]+1;
    if(y==‘|‘||y==‘*‘)
    {
        k--;
        return;
    }
    if(str[i]!=‘|‘)
        a=t1++;
    if(str[i+1]==‘*‘)
    {
        printf("f(%d,%c)=%d\n",i,‘~‘,k);
        printf("f(%d,%c)=%d\n",k,y,k);
        printf("f(%d,%c)=%d\n",k,‘~‘,a);
    }
    else
        printf("f(%d,%c)=%d\n",i,y,st[i+1]);
    if(i<t)
        Print(i+1,str[i+1]);
    memset(str,0,N);//清空数组str里的所有元素
}

时间: 2024-12-28 16:25:11

有限自动机的构造与识别3的相关文章

实验三有限自动机的构造与识别

#include<stdio.h> #include <ctype.h> #define ok 1 #define error 0 #define MAXREGLUARLONG 40 #define MAXSTATELONG 40 #define MAXCAHRSLONG 40 typedef int state; int iCurrentState=0; //初态以1开始 int iPreState=0; int iLastForkState=0; int iForkState=

第三次实验--有限自动机的构造与识别

实验目的:通过正规式构造NFA(有穷自动机)方法. 所运用到的语法规则: 语句                          规则 1.R=? /R=ε            X-----ε----->Y 2.R=a                     X-----a----->Y 3.R=r1r2                A-----r1----->B-----r2----->C 4.R=r1|r2                5.R=r1*          

实验三 有限自动机的构造与识别

一.实验目标 1.掌握有穷状态自动机的概念: 2.掌握有穷状态自动机的存储及表示方法: 3.掌握有穷状态自动机与正则式之间的关系. 二.实验要求 1.输入正规式: 2.构造该正规式的有穷状态自动机: 3. 以五元组形式输出. 三.算法 参见教材的转换规则. 练习: 2  (a|b)*abb 2  l(l|d)* 2  1(1010*|1(010)*1)*0 四.完成算法设计.编码和调试工作,完成实验报告. #include<string.h> #include<stdio.h> #

1118有限自动机的构造与识别

1 #include<string.h> 2 #include<stdio.h> 3 #include<stdlib.h> 4 int main() 5 { 6 char p[30][30]; 7 char q[30][30]; 8 int line=0; 9 int n; 10 int i,j; 11 int count=0; 12 int k,t=0; 13 int flag=0; 14 int l,m=0; 15 char VN[30]={'\0'}; 16 ch

1210有限自动机的构造与识别

#include<string.h>#include<stdio.h>#include<stdlib.h>int main(){char p[30][30];char q[30][30];int line=0;int n;int i,j;int count=0;int k,t=0;int flag=0;int l,m=0;char VN[30]={'\0'};char VT[30]={'\0'};printf("规则数:");scanf("

1118实验三有限自动机的构造与识别

#include<string.h>#include<stdio.h>#include<stdlib.h>int main(){ char p[30][30]; char q[30][30]; int line=0; int n; int i,j; int count=0; int k,t=0; int flag=0; int l,m=0; char VN[30]={'\0'}; char VT[30]={'\0'}; printf("请输入规则个数:&quo

有限自动机的构造和识别

#include<string.h>#include<stdio.h>#include<stdlib.h>int main(){    char p[30][30];//存放文法    char q[30][30];    int line=0;    int n;    int i,j;    int count=0;    int k,t=0;    int flag=0;    int l,m=0;    char VN[30]={'\0'};//存放非终结符号 

1118 实验三 有限自动机的构造与识别

#include<stdio.h>char gra[80];char ch;int m=0,p=0;struct{ int A; char R[10]; int B;}NFA;main(){ char gra[10]; printf("---------------正规文法转换成有穷自动机------------------\n"); printf("请输入正规文法R:"); do{ ch=getchar(); gra[p++]=ch; }while(c

有限自动机的构造与识别

#include "iostream.h"#include "string.h" #include "fstream.h"#define NULL 0 class TransTile{public: char current; char next; char input; TransTile(char C,char I,char Ne){ current = C; next = Ne; input = I; }}; class DFA{publi