Skip to main content
Module

x/datastructure/mod.js

Implement different Data Structures using TypeScript. Deno Third-party Module.
Latest
File
/** * Data Structure * * Different Data Structures implementation API provided by this module. * API available in TypeScript & JavaScript. * * @package dataStructure * @author Keramot UL Islam [Abm Sourav] * @email <keramotul.islam@gmail.com> * @authorUrl https://abmsourav.com * @sourceCode https://github.com/AbmSourav/dataStructure * @version 1.2.1 * * Copyright (c) 2021 Keramot UL Islam */
export { BlockChain } from "./blockChain/blockChain.bundle.js";export { HashTable } from "./hashTable/hashTable.bundle.js";export { SinglyLinkedList } from "./linkedList/singly/singlyLinkedList.bundle.js";export { DoublyLinkedList } from "./linkedList/doubly/doublyLinkedList.bundle.js";export { Stack } from "./stack/stack.bundle.js"export { Queue } from "./queue/queue.bundle.js"