Skip to content

Latest commit

 

History

History
44 lines (24 loc) · 504 Bytes

README.md

File metadata and controls

44 lines (24 loc) · 504 Bytes

Data Structures and Algorithms (JavaScript)

Setup

Code examples are executed on Node v12.22.1 and npm 6.14.12.

npm install
npm run test

Topics

  • Array

  • String

  • Recursion

  • Linked List

    • Singly Linked List

    • Double Linked List

  • Stack

    • Stack using Array

    • Stack using Linked List

  • Queue

    • Queue using Array

    • Queue using Linked List

  • Trees

    • Binary Search Tree
  • Graph

    • Simple Graph