I want to run DepthFirstSearch.java
from the following website:
https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/DepthFirstSearch.java
I put it in a folder new with the algs4.jar
from the above website. I use the following to compile in WINDOWS:
javac -cp algs4.jar DepthFirstSearch.java
which compiles correctly. However, when I run
java -cp algs4.jar DepthFirstSearch
I get the error that main class could not found or load.
Does anyone know how I can solve this?
Best Regards,