Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 395 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 395 Bytes

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