UNPKG

@sridhar-mani/dsa-js

Version:

A full-fledged data structure library with linked list and double linked list implementation

9 lines (8 loc) 413 B
import LinkedList from './linkedList/llMain' import LLNode from './linkedList/llnode'; import CompareFunc from './util/compareFuncs'; import DoubelLinkedList from './doubleLL/dllMain' import DoubleLLNode from './doubleLL/dllNode' import StackMain from './stack/StackMain'; import QueueMain from './Queue/QueueMain'; export {LinkedList,LLNode,CompareFunc,DoubelLinkedList,DoubleLLNode,StackMain,QueueMain}