8000 GitHub - saisubham/dfa: Implementation of Deterministic Finite Automata using Go
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ dfa Public

Implementation of Deterministic Finite Automata using Go

Notifications You must be signed in to change notification settings

saisubham/dfa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DFA in Go

Implementation of a simple Deterministic Finite Automata in Go.

Installation

git clone https://github.com/saisubham/dfa.git

Compiling

cd dfa
go mod tidy

Testing

go test -v

Sample program

func main() {
	dfa, err := MakeDFA(
		[]int{0, 1, 2},   // all states
		[]rune{'0', '1'}, // all symbols
		0,                // initial state
		[]int{0},         // final states
	)
	if err != nil {
		t.Fail()
	}
	err = dfa.AddTransitions([]*Transitions{
		{0, '0', 0},
		{0, '1', 1},
		{1, '0', 2},
		{1, '1', 0},
		{2, '0', 1},
		{2, '1', 2},
	})
	if err != nil {
		t.Fail()
	}
	out, err := dfa.Run("1001")
	if err != nil {
		log.Printf(err.Error())
	}

	if out {
		fmt.Println("accepted")
	} else {
		fmt.Println("rejected")
	}
}

Running

Assuming sample program is stored in main.go

go run main.go

About

Implementation of Deterministic Finite Automata using Go

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0