Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

JustineOverflow/data-structures

Repository files navigation

Data structures & algorithms (for learning purposes)

Linked List

Implementation of the following interface:

  • add
  • get
  • remove

Stack

Implementation of the following interface:

  • push(item)
  • pop
  • peek: item
  • length

Queue

Implementation of the following interface:

  • enqueue(item)
  • dequeue
  • peek: item

Hash maps

Implementation of the following interface:

  • put
  • delete

Binary Search tree

Implementation of the following interface:

  • insert(item)

Insertion sort, selection sort & bubble sort

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors