Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 801 Bytes

README.md

File metadata and controls

30 lines (28 loc) · 801 Bytes

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