编写以下程序:用 java 以及JavaFX设计实现电脑鼠走迷宫的软件程序,即一个假想的小车能在图示的迷宫中根据设定的起始点和终点自主寻找路径。其中用prim算法生成迷宫,实现找出一条单一通路、遍历所有可行路径以及找出最短通路。设计合理界面布局将其展现给用户

时间: 2024-03-14 16:43:02 浏览: 24
好的,以下是一个简单的Java和JavaFX实现电脑鼠走迷宫的程序。这个程序可以使用Prim算法生成迷宫,使用深度优先搜索来找到通路,使用Dijkstra算法来找到最短路径,并使用JavaFX设计合理的界面布局展示给用户。 ```java import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.canvas.Canvas; import javafx.scene.canvas.GraphicsContext; import javafx.scene.layout.BorderPane; import javafx.scene.paint.Color; import javafx.stage.Stage; import java.util.*; public class MazeSolver extends Application { private static final int MAZE_SIZE = 25; private static final int CELL_SIZE = 20; private static final int WALL_SIZE = 2; private static final int SCREEN_WIDTH = MAZE_SIZE * (CELL_SIZE + WALL_SIZE) + WALL_SIZE; private static final int SCREEN_HEIGHT = MAZE_SIZE * (CELL_SIZE + WALL_SIZE) + WALL_SIZE; private static final Color WALL_COLOR = Color.BLACK; private static final Color CELL_COLOR = Color.WHITE; private static final Color START_COLOR = Color.GREEN; private static final Color END_COLOR = Color.RED; private static final Color PATH_COLOR = Color.BLUE; private int[][] maze; private int startX, startY; private int endX, endY; private List<int[]> path; @Override public void start(Stage primaryStage) throws Exception { maze = generateMaze(); findPath(); BorderPane root = new BorderPane(); Canvas canvas = new Canvas(SCREEN_WIDTH, SCREEN_HEIGHT); GraphicsContext gc = canvas.getGraphicsContext2D(); drawMaze(gc); drawPath(gc); root.setCenter(canvas); Scene scene = new Scene(root); primaryStage.setScene(scene); primaryStage.show(); } private int[][] generateMaze() { int[][] maze = new int[MAZE_SIZE][MAZE_SIZE]; Random random = new Random(); for (int i = 0; i < MAZE_SIZE; i++) { Arrays.fill(maze[i], 1); } int startX = random.nextInt(MAZE_SIZE); int startY = random.nextInt(MAZE_SIZE); maze[startX][startY] = 0; List<int[]> walls = new ArrayList<>(); addWalls(walls, startX, startY); while (!walls.isEmpty()) { int[] wall = walls.remove(random.nextInt(walls.size())); int x = wall[0]; int y = wall[1]; int nx = wall[2]; int ny = wall[3]; if (maze[x][y] == maze[nx][ny]) { continue; } if (maze[x][y] == 0) { maze[nx][ny] = 0; } else { maze[x][y] = 0; } addWalls(walls, nx, ny); } this.startX = startX; this.startY = startY; this.endX = random.nextInt(MAZE_SIZE); this.endY = random.nextInt(MAZE_SIZE); maze[endX][endY] = 0; return maze; } private void addWalls(List<int[]> walls, int x, int y) { if (x > 0) { walls.add(new int[]{x, y, x - 1, y}); } if (y > 0) { walls.add(new int[]{x, y, x, y - 1}); } if (x < MAZE_SIZE - 1) { walls.add(new int[]{x, y, x + 1, y}); } if (y < MAZE_SIZE - 1) { walls.add(new int[]{x, y, x, y + 1}); } } private void findPath() { boolean[][] visited = new boolean[MAZE_SIZE][MAZE_SIZE]; int[][] distance = new int[MAZE_SIZE][MAZE_SIZE]; int[][] prevX = new int[MAZE_SIZE][MAZE_SIZE]; int[][] prevY = new int[MAZE_SIZE][MAZE_SIZE]; for (int i = 0; i < MAZE_SIZE; i++) { Arrays.fill(visited[i], false); Arrays.fill(distance[i], Integer.MAX_VALUE); } distance[startX][startY] = 0; PriorityQueue<int[]> queue = new PriorityQueue<>(Comparator.comparingInt(o -> distance[o[0]][o[1]])); queue.offer(new int[]{startX, startY}); while (!queue.isEmpty()) { int[] cell = queue.poll(); int x = cell[0]; int y = cell[1]; if (visited[x][y]) { continue; } visited[x][y] = true; if (x == endX && y == endY) { break; } if (x > 0 && maze[x - 1][y] == 0 && !visited[x - 1][y]) { int d = distance[x][y] + 1; if (d < distance[x - 1][y]) { distance[x - 1][y] = d; prevX[x - 1][y] = x; prevY[x - 1][y] = y; queue.offer(new int[]{x - 1, y}); } } if (y > 0 && maze[x][y - 1] == 0 && !visited[x][y - 1]) { int d = distance[x][y] + 1; if (d < distance[x][y - 1]) { distance[x][y - 1] = d; prevX[x][y - 1] = x; prevY[x][y - 1] = y; queue.offer(new int[]{x, y - 1}); } } if (x < MAZE_SIZE - 1 && maze[x + 1][y] == 0 && !visited[x + 1][y]) { int d = distance[x][y] + 1; if (d < distance[x + 1][y]) { distance[x + 1][y] = d; prevX[x + 1][y] = x; prevY[x + 1][y] = y; queue.offer(new int[]{x + 1, y}); } } if (y < MAZE_SIZE - 1 && maze[x][y + 1] == 0 && !visited[x][y + 1]) { int d = distance[x][y] + 1; if (d < distance[x][y + 1]) { distance[x][y + 1] = d; prevX[x][y + 1] = x; prevY[x][y + 1] = y; queue.offer(new int[]{x, y + 1}); } } } path = new ArrayList<>(); int x = endX; int y = endY; while (x != startX || y != startY) { path.add(new int[]{x, y}); int nx = prevX[x][y]; int ny = prevY[x][y]; x = nx; y = ny; } path.add(new int[]{startX, startY}); Collections.reverse(path); } private void drawMaze(GraphicsContext gc) { gc.setFill(WALL_COLOR); gc.fillRect(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT); gc.setFill(CELL_COLOR); for (int i = 0; i < MAZE_SIZE; i++) { for (int j = 0; j < MAZE_SIZE; j++) { if (maze[i][j] == 0) { gc.fillRect(j * (CELL_SIZE + WALL_SIZE) + WALL_SIZE, i * (CELL_SIZE + WALL_SIZE) + WALL_SIZE, CELL_SIZE, CELL_SIZE); } } } gc.setFill(START_COLOR); gc.fillOval(startY * (CELL_SIZE + WALL_SIZE) + WALL_SIZE, startX * (CELL_SIZE + WALL_SIZE) + WALL_SIZE, CELL_SIZE, CELL_SIZE); gc.setFill(END_COLOR); gc.fillOval(endY * (CELL_SIZE + WALL_SIZE) + WALL_SIZE, endX * (CELL_SIZE + WALL_SIZE) + WALL_SIZE, CELL_SIZE, CELL_SIZE); } private void drawPath(GraphicsContext gc) { gc.setFill(PATH_COLOR); for (int i = 0; i < path.size() - 1; i++) { int[] cell1 = path.get(i); int[] cell2 = path.get(i + 1); gc.strokeLine(cell1[1] * (CELL_SIZE + WALL_SIZE) + WALL_SIZE + CELL_SIZE / 2, cell1[0] * (CELL_SIZE + WALL_SIZE) + WALL_SIZE + CELL_SIZE / 2, cell2[1] * (CELL_SIZE + WALL_SIZE) + WALL_SIZE + CELL_SIZE / 2, cell2[0] * (CELL_SIZE + WALL_SIZE) + WALL_SIZE + CELL_SIZE / 2); } } public static void main(String[] args) { launch(args); } } ``` 这个程序中,我们使用generateMaze方法和Prim算法来生成迷宫,并使用findPath方法和Dijkstra算法来找到最短路径。我们使用JavaFX的Canvas来绘制迷宫和路径,并使用BorderPane来布局界面。在drawMaze方法中,我们首先使用黑色填充整个画布,然后使用白色填充迷宫的单元格。在drawPath方法中,我们使用蓝色绘制最短路径。 运行这个程序,你可以看到一个自动生成迷宫并找到最短路径的演示。你可以根据自己的需求,修改这个程序,例如修改迷宫大小、单元格大小、墙壁大小、颜色等,以及使用其他算法来生成迷宫和找到路径。

相关推荐

最新推荐

recommend-type

JavaFX 教程 (中文).docx

主要介绍Scene Builder 下使用一些组件以及应用程序打包、部署
recommend-type

STC89C51 简单时钟

STC89C51 简单时钟,叫你从基础开始学习单片机,
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

MATLAB归一化方法大比拼:5种方法,哪种最适合你的数据?

![MATLAB归一化方法大比拼:5种方法,哪种最适合你的数据?](https://www.finebi.com/wp-content/uploads/2019/11/FineBI%E8%A1%8C%E4%B8%9A%E9%A9%BE%E9%A9%B6%E8%88%B1-1024x510.png) # 1. MATLAB归一化概述 归一化是一种数据预处理技术,用于将数据缩放到特定范围内,从而消除不同特征之间的尺度差异。在MATLAB中,有各种归一化方法可用于不同类型的数据和应用程序。 归一化的主要目的是: - 提高模型的训练效率和准确性,通过消除特征之间的尺度差异,使模型能够更有效地学习
recommend-type

failed to register layer: ApplyLayer exit status 1 stdout: stderr: archive/tar: invalid tar header

很抱歉听到这个问题。这个错误通常是由于Docker镜像损坏或Docker存储库中缺少所需的图层引起的。您可以尝试以下几种方法来解决这个问题: 1. 清理Docker镜像和容器:使用命令“docker system prune”清理不再使用的Docker对象。 2. 检查Docker存储库:确保您正在使用可靠的Docker存储库,并检查是否存在所有必需的图层。 3. 重新下载Docker镜像:如果您确定问题是由于损坏的Docker镜像引起的,则可以尝试重新下载Docker镜像。 4. 更新Docker版本:如果您使用的是旧版Docker,则可能会出现此问题。尝试更新到最新版本的Docke
recommend-type

Linux系统常用操作命令大全手册

附件是Linux系统常用操作命令大全手册,是 markdown格式,其中覆盖了Linux系统管理、文件操作、网络配置等多个方面,都是日常工作中非常常用的命令,欢迎大家下载学习使用!
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依
recommend-type

MATLAB归一化实战指南:从零到一,轻松提升模型性能

![MATLAB归一化实战指南:从零到一,轻松提升模型性能](https://pic1.zhimg.com/80/v2-fd366800ef0bdf29c804ce25c0276778_1440w.webp) # 1. 归一化的理论基础** 归一化是一种数据预处理技术,旨在将数据缩放到特定范围内,通常是[0, 1]或[-1, 1]。通过归一化,可以消除数据量纲上的差异,使不同特征具有可比性,从而提高机器学习模型的性能。 归一化背后的基本原理是,在训练机器学习模型时,模型的学习过程会受到数据分布的影响。如果数据分布不均匀,某些特征可能具有较大的值域,而其他特征的值域较小。这会导致模型在训练过
recommend-type

File path = new File(ResourceUtils.getURL("classpath:static").getPath());

这段代码的作用是获取项目中静态资源文件夹的路径,其中`ResourceUtils.getURL("classpath:static")`表示获取`classpath`下的`static`文件夹的URL,`getPath()`方法则将URL转换成文件路径。最终得到的`File`对象可以用于读取或写入静态资源文件。需要注意的是,这段代码只适用于Spring Boot项目,因为它使用了Spring的`ResourceUtils`类。如果不是Spring Boot项目,可能需要使用其他方式获取静态资源文件夹的路径。
recommend-type

Java加密技术

加密解密,曾经是我一个毕业设计的重要组件。在工作了多年以后回想当时那个加密、 解密算法,实在是太单纯了。 言归正传,这里我们主要描述Java已经实现的一些加密解密算法,最后介绍数字证书。 如基本的单向加密算法: ● BASE64 严格地说,属于编码格式,而非加密算法 ● MD5(Message Digest algorithm 5,信息摘要算法) ● SHA(Secure Hash Algorithm,安全散列算法) ● HMAC(Hash Message AuthenticationCode,散列消息鉴别码) 复杂的对称加密(DES、PBE)、非对称加密算法: ● DES(Data Encryption Standard,数据加密算法) ● PBE(Password-based encryption,基于密码验证) ● RSA(算法的名字以发明者的名字命名:Ron Rivest, AdiShamir 和Leonard Adleman) ● DH(Diffie-Hellman算法,密钥一致协议) ● DSA(Digital Signature Algorithm,数字签名) ● ECC(Elliptic Curves Cryptography,椭圆曲线密码编码学) 本篇内容简要介绍 BASE64、MD5、SHA、HMAC 几种方法。 MD5、SHA、HMAC 这三种加密算法,可谓是非可逆加密,就是不可解密的加密方法。我 们通常只把他们作为加密的基础。单纯的以上三种的加密并不可靠。 BASE64 按照 RFC2045 的定义,Base64 被定义为:Base64 内容传送编码被设计用来把任意序列 的 8 位字节描述为一种不易被人直接识别的形式。(The Base64 Content-Transfer-Encoding is designed to represent arbitrary sequences of octets in a form that need not be humanly readable.) 常见于邮件、http 加密,截取 http 信息,你就会发现登录操作的用户名、密码字段通 过 BASE64 加密的。 通过 java 代码实现如下: