Created package uninformed for uninformed search algorithms and moved the implementations to this package

This commit is contained in:
Niklas Birk
2019-04-01 20:27:14 +02:00
parent bb95a412d8
commit 4a0b04aefe
6 changed files with 8 additions and 12 deletions

View File

@ -1,4 +1,4 @@
package search.breadthfirstsearch;
package search.uninformed.breadthfirstsearch;
import search.Node;

View File

@ -1,4 +1,4 @@
package search.depthfirstsearch;
package search.uninformed.depthfirstsearch;
import search.Node;

View File

@ -1,4 +1,4 @@
package search.iterativedeepening;
package search.uninformed.iterativedeepening;
import search.Node;