Skip to content

all-trees/tree-dyck

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tree-dyck

Code to generate all words of the Dyck language.

Usage

Generator generator = new Generator();
State currentState = generator.initialStateOfLength(0);
do {
    // act on currentState
    currentState = generator.next(currentState);
} while(true); // There are infinite Dyck words

About

Code to generate all word of the Dyck language

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages