Skip to content

Instantly share code, notes, and snippets.

View AmalJossy's full-sized avatar
🎮
Work, game, repeat

Amal Jossy AmalJossy

🎮
Work, game, repeat
View GitHub Profile
@AmalJossy
AmalJossy / NFA2DFA.c
Created October 11, 2018 07:11
C program to convert NFA(no epsilon transition) to DFA
#include<stdio.h>
/****************************/
// input: row 1: Length of language
// row 2: Input symbols
// row 3: No of Transitions
// row >3: "qi input qj"
/****************************/
typedef struct trans TRANS;