Skip to content

Latest commit

 

History

History
58 lines (44 loc) · 2.89 KB

readme.md

File metadata and controls

58 lines (44 loc) · 2.89 KB

Data Structures

A data structure is a way of organizing data so that they can be used effectively.

This repository contains data structures implemented in JAVA. These datastructures can be directly used in your other JAVA projects if needed (by importing the respective packages ).

Getting Started

Clone repo - "git clone https://github.com/AshwinkumarPillai/DataStructures.git"

Compile the java files - "javac filename.java"

and that's it!

Prerequisites

You need a JDK installed on your local machine (jdk-8 or higher recommended).

Content

Future topics to be added

  • Fenwick Tree
  • Suffix Arrays
  • LCP Arrays
  • AVL
  • ...

Acknowledgement

Inspired by William Fiset.