Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pterosaur/regex-study

Regex study, include regex NFA building, matching.
https://github.com/pterosaur/regex-study

nfa thompson

Last synced: 3 days ago
JSON representation

Regex study, include regex NFA building, matching.

Awesome Lists containing this project

README

        

# NFA-Study
[![Build Status](https://travis-ci.com/Pterosaur/Regex-Study.svg?branch=master)](https://travis-ci.com/Pterosaur/Regex-Study)

NFA study

## Glushkov NFA

#### Reference

- [NFA 与 hyperscan](https://carecraft.github.io/basictheory/2017/08/hyperscan_sc/)
- [Glushkov's construction algorithm](https://en.wikipedia.org/wiki/Glushkov%27s_construction_algorithm)

### Construction

## Thompson NFA
- [Regular Expression Matching Can Be Simple And Fast](https://swtch.com/~rsc/regexp/regexp1.html)

#### Reference

- [Implementing Regular Expressions](https://swtch.com/~rsc/regexp/)