1 #include 2 main() 3 { 4 int i=0,j=0,x=0,y; 5 int number=2; 6 int count=0; 7 char ch; 8 char a[100][100]; 9 printf("请输入正规式以#结束 :\n"); 10 printf("^代表空... ...
分类:
其他好文 时间:
2016-12-16 23:20:19
阅读次数:
198
#include main() { int i=0,j=0,x=0,y; int number=2; int count=0; char ch; char a[100][100]; printf("请输入正规式以#结束 :\n"); printf("^代表空\n"); printf("|代表或\n"... ...
分类:
其他好文 时间:
2016-12-15 11:39:08
阅读次数:
141
#include <stdio.h> //s为初态,z为终态 int in(int s,int z) { if(s == z) { printf("3\nlook!the last status belongs to Z"); return 1; } else { return 0; } } //s ...
分类:
其他好文 时间:
2016-11-27 18:57:32
阅读次数:
134
一、实验目标 1、掌握有穷状态自动机的概念; 2、掌握有穷状态自动机的存储及表示方法; 3、掌握有穷状态自动机与正则式之间的关系。 二、实验要求 1、输入正规式; 2、构造该正规式的有穷状态自动机; 3. 以五元组形式输出。 三、构造方法 如图 代码如下 程序结果如图 其中关于闭包部分会出现重复输出 ...
分类:
其他好文 时间:
2016-11-26 14:59:31
阅读次数:
107
这个代码看的我一脸懵逼= =。。。改得我一脸懵逼。。还是要多看几次才行。 #include <string.h> #include <stdio.h> #include <stdlib.h> int main() { char p[30][30]; //存放文法 char q[30][30]; in ...
分类:
其他好文 时间:
2016-11-25 19:53:18
阅读次数:
180