Skip to content

Latest commit

 

History

History
70 lines (43 loc) · 2.71 KB

README.md

File metadata and controls

70 lines (43 loc) · 2.71 KB

Table of Contents

Compiling and running with JDK

Run this commands from project root folder in terminal:

Compiling

javac -d classes -sourcepath src src/<Path to .java file>

Running

java -cp classes <class full hierarchy>

Example

javac -d classes -sourcepath src src/DataStructures/LinkedList/DriverClass.java
java -cp classes DataStructures.LinkedList.DriverClass

Resources

  1. Advanced Algorithms (Graph Algorithms) in Java by Holczer Balazs

  2. Graph Theory Playlist by William Fiset

  3. Data Structure Playlist by William Fiset

  4. Tree Algorithms Playlist by William Fiset