Sharing of my labs carried out during the TDDC17 course at Linköping University.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CustomDepthFirstSearch.java 252B

12345678
  1. package searchCustom;
  2. public class CustomDepthFirstSearch extends CustomGraphSearch{
  3. public CustomDepthFirstSearch(int maxDepth){
  4. super(true);
  5. //System.out.println("Change line above in \"CustomDepthFirstSearch.java\"! --> done.");
  6. }
  7. };