0% found this document useful (0 votes)
39 views11 pages

Experiment No:1 Aim: Lex Analyzer

The document describes an experiment to convert a regular expression into a deterministic finite automaton (DFA). It includes code to: 1. Define a regular expression as a vector of characters 2. Parse the regular expression to identify operators like '.', '+', '*' 3. Construct the state transition table for the DFA based on the regular expression 4. Print the state transition table The program takes a regular expression as input, analyzes it to determine the DFA states and transitions, and outputs the state transition table.

Uploaded by

Sahil Tomar
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
39 views11 pages

Experiment No:1 Aim: Lex Analyzer

The document describes an experiment to convert a regular expression into a deterministic finite automaton (DFA). It includes code to: 1. Define a regular expression as a vector of characters 2. Parse the regular expression to identify operators like '.', '+', '*' 3. Construct the state transition table for the DFA based on the regular expression 4. Print the state transition table The program takes a regular expression as input, analyzes it to determine the DFA states and transitions, and outputs the state transition table.

Uploaded by

Sahil Tomar
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 11

Experiment No:1

Aim: Lex Analyzer


#include <iostream>
#include <string.h>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
string str;
vector <string> keywords;
vector <string> operators;
vector <string> rkeywords;
vector <string> roperators;
operators.push_back("::");
operators.push_back("++");
operators.push_back("\"");
operators.push_back("+");
operators.push_back("-");
operators.push_back("*");
operators.push_back("/");
operators.push_back(">");
operators.push_back(",");
operators.push_back(";");
operators.push_back("<");
operators.push_back("==");
operators.push_back("");
operators.push_back("=");
operators.push_back("&&");
operators.push_back("&");
operators.push_back("{");
operators.push_back("}");
operators.push_back("||");
operators.push_back("`");
operators.push_back("~");
operators.push_back("#");
operators.push_back("(");
operators.push_back(")");

keywords.push_back("#include");
keywords.push_back("stdio.h");
keywords.push_back("conio.h");
keywords.push_back("int");
keywords.push_back("main");
keywords.push_back("float");
keywords.push_back("char");
keywords.push_back("return");
keywords.push_back("printf");
keywords.push_back("scanf");
keywords.push_back("if");
keywords.push_back("else");
cout<<"Enter the Program:\n";
getline(cin,str);
vector<string>::iterator it;

for(it=keywords.begin();it!=keywords.end();it++){
string temp=*it;

size_t found = str.find(temp);


if (found!=std::string::npos) { rkeywords.push_back(*it);
}}
for(it=operators.begin();it!=operators.end();it++){
string temp=*it;

size_t found = str.find(temp);


if (found!=std::string::npos) {
if(*it=="+"){
vector<string>::iterator it1;
it1=++it;
--it;
if(*it1=="+"){
roperators.push_back(*it);
it++;
}}
else
roperators.push_back(*it);
}
}

cout<<"Keywords::\n";
for(it=rkeywords.begin();it!=rkeywords.end();it++)
cout<<*it<<"\n";
cout<<"Operator::\n";
for(it=roperators.begin();it!=roperators.end();it++)
cout<<*it<<"\n";
return 0;
}
cout<<"Keywords::\n";
for(it=rkeywords.begin();it!=rkeywords.end();it++)
cout<<*it<<"\n";
cout<<"Operator::\n";
for(it=roperators.begin();it!=roperators.end();it++)
cout<<*it<<"\n";
return 0;
}

Input:
#include <stdio.h>int main(){ int a,b,cat; a++;
at=a+b; if(cat>a) printf("%d",cat); return 0;}

Output:
Enter the Program:
Keywords::
#include
stdio.h
int
main
return
printf
scanf
if
Operator::
++
"
>
,
;
<
=

scanf("%d,%d",&a,&b);

&
{
}
#
(
)

Experiment No:2
Aim: Flex Program
Input.txt
#include<iostream.h>
void main(){
int a=10,b=20;
sum=a+b;
cout<<sum;
getch();
}

1.Line Number
%{
int yylineno;
%}
%%
^(.*)\n printf("%4d\t%s", yylineno++, yytext);
%%
int main(int argc, char *argv[]) {
yyin = fopen(argv[1], "r");
yylex();
fclose(yyin);
}

Output:

2.Remove Extra Space,Line,etc


%{
#include<stdio.h>
%}
%%
[\n\t ' '] {};
%%
main()
{
yyin=fopen("input.txt","r");
yylex();
}
int yywrap()
{
return 1;
}

Output:

3.Count Number of Alpbhabets,Digits,etc.


%{
#include<stdio.h>
int lines=0, words=0,s_letters=0,c_letters=0, num=0, spl_char=0,total=0;
%}
%%
\n { lines++; words++;}
[\t ' '] words++;
[A-Z] c_letters++;
[a-z] s_letters++;
[0-9] num++;
. spl_char++;
%%
main(void)
{
yyin= fopen("input.txt","r");

yylex();
total=s_letters+c_letters+num+spl_char;
printf(" This File contains ...");
printf("\n\t%d lines", lines);
printf("\n\t%d words",words);
printf("\n\t%d small letters", s_letters);
printf("\n\t%d capital letters",c_letters);
printf("\n\t%d digits", num);
printf("\n\t%d special characters",spl_char);
printf("\n\tIn total %d characters.\n",total);
}
int yywrap()
{
return(1);
}

Output:

Experiment No:3

Aim: Regular Expression to DFA.


#include <iostream>
#include <algorithm>
#include<vector>
#include<string>
#include<map>
#include<iterator>
using namespace std;
#include<algorithm>
using namespace std;
int main()
{ int c=1;
vector<char>re,dre;
vector<char>::iterator it;
vector<char>::iterator sit;
vector<char>::iterator dit;
vector<char>::iterator eit;
int out[3][3],i,j;
int in,s;
char c1,c2;
int d=0;
for(i=0;i<3;i++)
for(j=0;j<3;j++)
out[i][j]=-1;
re.push_back('(');
re.push_back('a');
re.push_back('.');
re.push_back('b');
re.push_back(')');
re.push_back('*');
sit=find(re.begin(),re.end(),'(');
eit=find(re.begin(),re.end(),')');
if(sit!=re.end()&&eit!=re.end()){
it=find(re.begin(),re.end(),'.');
if(it!=re.end()){
out[0][0]=1;
out[1][1]=2;
c1=*(--it);
++it;

c2=*(++it);
dit=find(re.begin(),re.end(),'*');
if(dit!=re.end()){
out[0][2]=2;
out[2][2]=0;
}
d=1;
}
it=find(re.begin(),re.end(),'+');
if(it!=re.end()){
out[0][0]=1;
out[0][1]=1;
c1=*(--it);
++it;
c2=*(++it);
dit=find(re.begin(),re.end(),'*');
if(dit!=re.end()){
out[0][2]=1;
out[1][2]=0;
}
d=1;
}
if(d==0){
it=find(re.begin(),re.end(),'*');
if(it!=re.end()){
out[0][0]=0;
c1=*(--it);
}}
cout<<"s\ta\tb\tE\n";
for(i=0;i<3;i++){
cout<<"q"<<i<<"\t";
for(j=0;j<3;j++){
if(out[i][j]!=-1)
cout<<"q"<<out[i][j]<<"\t";
else
cout<<" \t";
}
cout<<endl;
}
return 0;
}
it=find(re.begin(),re.end(),'.');
if(it!=re.end()){
out[0][0]=1;

out[1][1]=2;
c1=*(--it);
++it;
c2=*(++it);
}
it=find(re.begin(),re.end(),'+');
if(it!=re.end()){
out[0][0]=1;
out[0][1]=1;
c1=*(--it);
++it;
c2=*(++it);
in=2;
s=2;
}
it=find(re.begin(),re.end(),'*');
if(it!=re.end()){
out[0][0]=0;
c1=*(--it);
in=1;
s=1;
}
cout<<"s\ta\tb\tE\n";
for(i=0;i<3;i++){
cout<<"q"<<i<<"\t";
for(j=0;j<3;j++){
if(out[i][j]!=-1)
cout<<"q"<<out[i][j]<<"\t";
else
cout<<" \t";
}
cout<<endl;
}
return 0;
}

Output:

You might also like