Create different DataStructures using simple APIs. API available in TypeScript & JavaScript [ES6].
// ** create a blockchain datastructure
const blockChain = BlockChain.createBlockChain()
blockChain.createBlock({key: 'usd', value: {amount: 540}})
// check is the hash chain is valid
blockChain.checkValidation()
// ** create stack
const stack = Stack.createStack()
// add data in the stack
stack.push({key: 'a', value: 'apple'})
stack.push({key: 'b', value: {name: 'AbmSourav'}})
// search in the stack by key
stack.search('a');
// ** create a queue
const queue = Queue.createQueue()
queue.enqueue({key: 'a', value: [1, 2, 5]})
queue.enqueue({key: 'sourav', value: {name: "Sourav"}})
// remove item
queue.dequeue()
- BlockChain -- Documentation
- HashTable -- Documentation
- Doubly LinkedList -- Documentation
- Singly LinkedList -- Documentation
- Stack -- Documentation
- Queue -- Documentation
Developer Wiki
.