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

https://github.com/emgyrz/catalan_parentheses


https://github.com/emgyrz/catalan_parentheses

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Parentheses and Catalan Numbers

Some algorithms to generate all possible N pairs of balanced parentheses.

Faster than ever before!!!11`

### Run
```sh
#
go run algorithm1.go N
#
rustc -C opt-level=3 algorithm2.rs && ./algorithm2 N
#
g++ -O3 algorithm3.cpp && ./a.out N
#
./algorithm2.js N
```