您好我一直在尝试使用广度优先搜索编程算法,该搜索找到蓝点在游戏中退出的最短路径。我是java新手,无法运行/理解该类的算法。我有一个名为gameModel的类,它存储每个点的状态。 algoirthm是为了测试蓝点离开棋盘的最快方式,而不是通过橙色圆点(SELECTED),如果没有出局,那么玩家将获胜。我继续运行程序并得到编译错误,我不知道如何解决。我包含了运行短点的控制器类。
import java.util.Random;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.*;
/**
* The class <b>GameController</b> is the controller of the game. It implements
* the interface ActionListener to be called back when the player makes a move. It computes
* the next step of the game, and then updates model and view.
*/
public class GameController implements ActionListener {
private int size;
private GameModel gameModel;
private GameView gameView;
private boolean click;
/**
* Constructor used for initializing the controller. It creates the game's view
* and the game's model instances
*
* @param size
* the size of the board on which the game will be played
*/
public GameController(int size) {
this.size = size;
this.gameModel = new GameModel(size);
this.gameView = new GameView (gameModel, this);
click = false;
}
/**
* Starts the game
*/
public void start(){
if (click){
List start = new List {gameModel.getCurrentDot().getX(), gameModel.getCurrentDot().getY()};
List<int> targets = new ArrayList<>();
List<int> blocked = nwq ArrayList<>();
for (int i = 0; i < size; i++){
targets.add(i, 0);
targets.add(i, size);
targets.add(1, size);
targets.add(1, 0);
}
for (int i = 0; i < size; i++){
for (int j = 0; j < size; j++)
if(gameModel.getstatus(i, j) == SELECTED){
blocked.add(i, j);
}
String path = Breadth-First-Start(start, targets, blocked);
gameView = new GameView(gameModel, this);
gameView.getBoardView().update();
}
}
public Breadth-First-Start(start, targets, blocked){ // Need help with
Queue queue = new LinkedList();
queue.add(start + "");
while(!queue.isEmpty()){
String p = queue.remove();
if (p != blocked){ //If p is not in blocked paths
if (p == targets){ //If p is in targets
return "q + {p}";
} else {
queue.add("q + {p}");
blocked.add(p);
}
}
}
答案 0 :(得分:3)
您声明方法public Breadth-First-Start(start, targets, blocked)
错误。您不能在方法名称中使用-
,还需要指定返回类型(只有构造函数没有要定义的返回类型)。您还需要指定参数类型。根据我理解的目标并开始看起来像String类型并且阻塞看起来像List,请尝试用以下public void breadthFirstSearch(String start, String targets, List blocked)
替换方法头,不知道你想要什么样的返回类型,因为你没有在方法中返回任何内容。但在你的情况下你可能想要路径所以可能是List类型,或者是布尔值来知道是否有路径。
答案 1 :(得分:1)
您想要做的事情与图论有关。如果连接了两个节点,则会创建它们之间的边。在这种情况下,橙色点不会连接到任何东西,因为它们不能存在路径。 Dijkstra的算法对于做你想做的事非常有用,虽然它首先是宽度而不是深度。我建议从那里开始,我确定在java中实现了该算法的实例。
图的边缘具有比较的权重,以便找到两个节点之间的最短路径。
我看到你的阻止列表声明中包含nwq而不是new。那可能是你的问题。
希望这有帮助