Skip to content

Instantly share code, notes, and snippets.

View aman212yadav's full-sized avatar
🎯
Focusing

Aman yadav aman212yadav

🎯
Focusing
  • Swiggy
View GitHub Profile
@aman212yadav
aman212yadav / RE_to_NFA_to_DFA.cpp
Created February 5, 2020 12:13 — forked from fonlang/RE_to_NFA_to_DFA.cpp
Convert regex to NFA based on Thomposons Construction Algorithm and Convert NFA to DFA based on Subset Construction Algorithm
#include<iostream>
#include<sstream>
#include<vector>
#include<string>
#include<set>
#include<stack>
#define DEBUG 1
using namespace std;