https://github.com/codesvault/datastructure
Implement different Data Structures using TypeScript and JavaScript. Deno Third-party Module.
https://github.com/codesvault/datastructure
datastructure deno-module denoland javascript javascript-library typescript typescript-library
Last synced: 3 months ago
JSON representation
Implement different Data Structures using TypeScript and JavaScript. Deno Third-party Module.
- Host: GitHub
- URL: https://github.com/codesvault/datastructure
- Owner: CodesVault
- License: mit
- Created: 2021-09-21T04:34:38.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-21T04:34:48.000Z (almost 4 years ago)
- Last Synced: 2025-01-26T15:46:29.629Z (5 months ago)
- Topics: datastructure, deno-module, denoland, javascript, javascript-library, typescript, typescript-library
- Language: TypeScript
- Homepage: https://deno.land/x/datastructure/
- Size: 113 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data Structure
Different Data Structures implementation API provided by this module.
API available in TypeScript & JavaScript[ES6].
This library is also available as **[Deno Third party Module](https://deno.land/x/datastructure)**
If you're already using this module in your Deno project,
then rundeno run -r projectName/fileName.ts
for latest version.
## List of Data Structures:
* Block Chain -- **[Documentation](https://deno.land/x/datastructure/blockChain#blockChain-api)**
* Hash Table -- **[Documentation](https://deno.land/x/datastructure/hashTable#hash-table-api)**
* Singly Linked List -- **[Documentation](https://deno.land/x/datastructure/linkedList/singly#singly-linked-list-api)**
* Doubly Linked List -- **[Documentation](https://deno.land/x/datastructure/linkedList/doubly#doubly-linked-list-api)**
* Stack -- **[Documentation](https://deno.land/x/datastructure/stack#stack-api)**
* Queue -- **[Documentation](https://deno.land/x/datastructure/queue#queue-api)**
.