Skip to content

jkeys-ecg-nmsu/basic-java-data-structures

Repository files navigation

basic-java-data-structures

A wide range of (basic) data structures, implemented in simple, readable Java.

Interfaces

  • StackInterface
  • QueueInterface

Trees

  • Binary Search Tree
  • AVL Tree
  • Min heap

basic/various data structures

  • Linked list
  • Hash table
  • Queue (ArrayQueue, ListQueue)
  • Stack (ArrayListStack, ListStack)

Algorithms

  • Binary search
  • N-Queen problem