This TypeScript library provides implementations of commonly used data structures including Stack, Queue, and LinkedList, along with a JSON Parser to convert JSON text into these data structures.
Warning This project is currently in its beta stage and not yet ready for production use. Users are welcome to test the available beta releases and provide feedback. However, please be prepared for potential bugs and limitations at this stage.
Stay tuned for further updates and a production-ready release!
- Node.js
- TypeScript
The project is still in the development phase. Currently, the following data structures and helper functions have been implemented:
- Stack
- Queue
- Linked List
- JSON Parsing
This project provides utility functions for parsing JSON data and converting it into various data structures such as Stack, Queue, and Linked List. Here's a brief overview of the code:
- Interfaces: The project defines interfaces for
ILinkedList
,IQueue
, andIStack
. - Implementations: The
LinkedList
,Queue
, andStack
classes implement the corresponding interfaces. - Parser: The
Parser
class contains static methods for parsing JSON data and converting it into the desired data structures. - JSON Extension: The global
JSON
object is extended with additional methods likeparseToStack
,parseToQueue
, andparseToLinkedList
which utilize theParser
class methods.
To install the library, run the following command:
npm install @beratiyilik/ts-data-structures
Import the package in your project's entry point, such as index.ts
or app.ts
:
import "@beratiyilik/ts-data-structures";
By importing the package in your application's entry point, you will be able to access the JSON parser functions provided by this library throughout your project.
Contributions, issues, and feature requests are welcome. Feel free to check the issues page.
This project is licensed under the MIT License. See the LICENSE file for more details.