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

https://github.com/majorlift/parsejsontree

JSON parser that performs reverse post-order traversal of the abstract syntax tree.
https://github.com/majorlift/parsejsontree

Last synced: 1 day ago
JSON representation

JSON parser that performs reverse post-order traversal of the abstract syntax tree.

Awesome Lists containing this project

README

          

# JSON Parser

- Performs Reverse Post-Order Traversal of the JSON Abstract Syntax Tree.
- Time complexity is roughly linear, and by avoiding recursive calls, the parser is able to process larger inputs efficiently.
- Input validation and sanitization is not implemented. Matching brackets and adherence to JSON formatting rules is assumed.