Skip to content

From ground up implementation of data structure and algorithms.

Notifications You must be signed in to change notification settings

Lakshitnagar/DS-ALGO

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

96 Commits
 
 
 
 
 
 

Repository files navigation

DS-ALGO

This repository divided into two parts:
DS (Data Structures) - Ground level implementation of popular data struture in JAVA (eg. Linked List).
ALGO (Algorithms) - A very good set of algorithm problems solved in JAVA.

Pre-Requisite

Must have java installed.

How to use

Follow below steps to run all programs on your machine:

  1. Clone this project in desired location
git clone https://github.com/Lakshitnagar/DS-ALGO.git
  1. Change directory to the cloned project
cd DS-ALGO
  1. Add present working directory to the JAVA CLASSPATH (there are multiple ways)
java -cp <pwd>
  1. Compile all files
javac **/*.java
  1. Run the specific program. For example :
java ds.linkedlist.p1.S1