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.
- Host: GitHub
- URL: https://github.com/majorlift/parsejsontree
- Owner: MajorLift
- Created: 2021-06-12T09:11:51.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-17T13:29:44.000Z (almost 5 years ago)
- Last Synced: 2025-11-19T02:02:48.710Z (7 months ago)
- Language: TypeScript
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.