java 推箱子

说明:刚入门的时候面试,有个老师傅说,你们喜欢打游戏,让你们写个简单的推箱子,能写出来就过

我说这多简单

结果说要用枚举类,数组来写

写得一踏糊涂,最后没通过

如今工作两年了,忽然想起来了这个事情,花费一点时间写完,发现确实很有收获,希望大家也能有所收获,坚持不懈在这条道路上越走越远

import java.util.Arrays;
import java.util.Scanner;public class BoxStart {private static int mapX = 9;private static int mapY = 9;private static String[][] map = new String[mapX][mapY];public static void initMap(){for (int i = 0; i < map.length; i++) {Arrays.fill(map[i], Shape.road.getName());}}public static void printMap(){for (int i = 0; i < map.length; i++) {for (int j = 0; j < map[i].length; j++) {System.out.print(map[i][j] + " ");}System.out.println("");}}public static void changeMap(int x,int y,String shape){for (int i = 0; i < map.length; i++) {for (int j = 0; j < map[i].length; j++) {if(i==x && y==j){map[i][j] = shape;}}}}public static Boolean finishStatus(){boolean status = true;for (int i = 0; i < map.length; i++) {for (int j = 0; j < map[i].length; j++) {if (map[i][j].equals(Shape.WhiteBox.getName())) {status = false;break;}}}return !status;}public static void getRemoveAfter(String[] arr,int x , int y,boolean changeX,boolean changeY){for (int i = 0; i < map.length; i++) {for (int j = 0; j < map[i].length; j++) {if(changeX && i == x){map[i][j] = arr[j];}if(changeY && j == y){map[i][j] = arr[i];}}}}public static String[] recursionArr(String[] arr,int peopleX,int x){for (int i = x; i < arr.length; i++) {if(i == x){if(i == arr.length-1){return arr;}else {String next = arr[i+1];if(next.equals(Shape.road.getName())){for (int m = x; m >=peopleX; m--){arr[m+1] = arr[m];if(m == peopleX){arr[peopleX] = Shape.road.getName();}}return arr;}else if(next.equals(Shape.BlackBox.getName())){if(x>peopleX) {for (int m = x; m >= peopleX; m--) {arr[m + 1] = arr[m];if (m == peopleX) {arr[peopleX] = Shape.road.getName();arr[i + 1] = Shape.BlackBox.getName();}}}
//                        System.out.println(arr);return arr;}else if(next.equals(Shape.WhiteBox.getName())){return recursionArr(arr,peopleX,i+1);}}}}return arr;}public static int[] getPeoplePosition(){int[] people = new int[2];for (int i = 0; i < map.length; i++) {for (int j = 0; j < map[i].length; j++) {if(map[i][j].equals(Shape.People.getName())){people[0] = i;people[1] = j;}}}return people;}public static void reverseArray(String[] nums) {int left = 0, right = nums.length - 1;while (left < right) {// 交换元素String temp = nums[left];nums[left] = nums[right];nums[right] = temp;// 移动指针left++;right--;}}public static void upMove(){int[] position = getPeoplePosition();int peopleX = position[0];int peopleY = position[1];String [] arr = new String[mapX];for (int i = 0; i < map.length; i++) {for (int j = 0; j < map[i].length; j++) {if(j == peopleY){arr[mapX-i-1] = map[i][j];}}}String[] res = recursionArr(arr,mapX-peopleX-1,mapX-peopleX-1);reverseArray(res);getRemoveAfter(res,peopleX,peopleY,false,true);}public static void downMove(){int[] position = getPeoplePosition();int peopleX = position[0];int peopleY = position[1];String [] arr = new String[mapX];for (int i = 0; i < map.length; i++) {for (int j = 0; j < map[i].length; j++) {if(j == peopleY){arr[i] = map[i][j];}}}String[] res = recursionArr(arr,peopleX,peopleX);//        reverseArray(res);getRemoveAfter(res,peopleX,peopleY,false,true);}public static void leftMove(){int[] position = getPeoplePosition();int peopleX = position[0];int peopleY = position[1];String [] arr = new String[mapY];for (int i = 0; i < map.length; i++) {for (int j = 0; j < map[i].length; j++) {if(i == peopleX){arr[mapY-j-1] = map[i][j];}}}String[] res = recursionArr(arr,mapY-peopleY-1,mapY-peopleY-1);reverseArray(res);getRemoveAfter(res,peopleX,peopleY,true,false);}public static void rightMove(){int[] position = getPeoplePosition();int peopleX = position[0];int peopleY = position[1];String [] arr = new String[mapY];for (int i = 0; i < map.length; i++) {for (int j = 0; j < map[i].length; j++) {if(i == peopleX){arr[j] = map[i][j];}}}String[] res = recursionArr(arr,peopleY,peopleY);//        reverseArray(res);getRemoveAfter(res,peopleX,peopleY,true,false);}public static void main(String[] args) {initMap();changeMap(5,5,Shape.People.getName());changeMap(7,1,Shape.WhiteBox.getName());changeMap(1,5,Shape.BlackBox.getName());printMap();while (finishStatus()){System.out.println("---------input w/a/s/d----------");Scanner scanner = new Scanner(System.in);String controls = scanner.next();if("w".equals(controls)){upMove();}if("a".equals(controls)){leftMove();}if("s".equals(controls)){downMove();}if("d".equals(controls)){rightMove();}printMap();}System.out.println("--------------------------");System.out.println("---------success----------");System.out.println("--------------------------");}public enum Shape {road(1, "*"),WhiteBox(2, "□"),BlackBox(3, "■"),People(4, "Ꙫ");private int code;private String name;Shape(int code, String name) {this.code = code;this.name = name;}public int getCode() {return code;}public void setCode(int code) {this.code = code;}public String getName() {return name;}public void setName(String name) {this.name = name;}}}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/8038.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

面试分享——Elasticsearch面试题

目录 1.Elasticsearch数据建模相关问题 1.1问题描述 1.2问题回答 2.Elasticsearch 查询和分析相关问题 2.1问题描述 2.2问题回答 3.Elasticsearch 集成与开发问题 3.1问题描述 3.2问题回答 4.Elasticsearch DSL 相关应用选型等问题 4.1问题描述 4.2问题回答 4.2.1…

Android OpenMAX(四)OMX Core

假设我们已经写好了所有的OMX组件,有vdec、venc、adec、aenc,接下来问题来了,我们应该如何管理这些组件呢(创建、销毁)?这一篇文章我们向上一层学习OMX Core提供的标准API。 OMX Core代码位于 OMX_Core.h OMX Core在OpenMAX IL架构中的位置位于IL Client与实际的OMX组件之…

Spring+Vue的卓越托管中心管理系统的设计与实现+PPT+论文+讲解+售后

相比于以前的传统手工管理方式&#xff0c;智能化的管理方式可以大幅降低运营人员成本&#xff0c;实现了卓越托管中心管理系统的标准化、制度化、程序化的管理&#xff0c;有效地防止了卓越托管中心管理系统的随意管理&#xff0c;提高了信息的处理速度和精确度&#xff0c;能…

Junit单元测试框架

Junit单元测试框架 功能 可以用来对方法进行测试&#xff0c;它是第三方公司开源出来的(很多开发工具已经集成了Junit框架&#xff0c;比如IDEA) 优点 可以灵活的编写测试代码&#xff0c;可以针对某个方法执行测试&#xff0c;也支持一键完成对全部方法的自动化测试&#…

DI-engine强化学习入门(十又二分之一)如何使用RNN——数据处理、隐藏状态、Burn-in

一、数据处理 用于训练 RNN 的 mini-batch 数据不同于通常的数据。 这些数据通常应按时间序列排列。 对于 DI-engine, 这个处理是在 collector 阶段完成的。 用户需要在配置文件中指定 learn_unroll_len 以确保序列数据的长度与算法匹配。 对于大多数情况&#xff0c; learn_un…

神经网络极简入门

神经网络是深度学习的基础&#xff0c;正是深度学习的兴起&#xff0c;让停滞不前的人工智能再一次的取得飞速的发展。 其实神经网络的理论由来已久&#xff0c;灵感来自仿生智能计算&#xff0c;只是以前限于硬件的计算能力&#xff0c;没有突出的表现&#xff0c;直至谷歌的A…

mysql workbench如何导出insert语句?

进行导出设置 导出的sql文件 CREATE DATABASE IF NOT EXISTS jeesite /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci */ /*!80016 DEFAULT ENCRYPTIONN */; USE jeesite; -- MySQL dump 10.13 Distrib 8.0.28, for Win64 (x86_64) -- -- Host: 127.0…

如何使用dockerfile文件将项目打包成镜像

要根据Dockerfile文件来打包一个Docker镜像&#xff0c;你需要遵循以下步骤。这里假设你已经安装了Docker环境。 1. 准备Dockerfile 确保你的Dockerfile文件已经准备就绪&#xff0c;并且位于你希望构建上下文的目录中。Dockerfile是一个文本文件&#xff0c;包含了用户可以调…

顺序表的实现(迈入数据结构的大门)(1)

什么是数据结构 数据结构是由&#xff1a;“数据”与“结构”两部分组成 数据与结构 数据&#xff1a;如我们所看见的广告、图片、视频等&#xff0c;常见的数值&#xff0c;教务系统里的&#xff08;姓名、性别、学号、学历等等&#xff09;&#xff1b; 结构&#xff1a;当…

线性表--数据结构设计与操作

单链表 1.单链表的定义&#xff1a; typedef struct LNode{Elemtype data;struct Lnode *next; }LNode ,*LinkList;//单链表的数据结构&#xff08;手写&#xff09; #include<iostream> #include<vector> #include<algorithm>typedef int TypeElem; //单链表…

OpenAI API搭建的智能家居助手;私密大型语言模型(LLM)聊天机器人;视频和音频文件的自动化识别和翻译工具

✨ 1: GPT Home 基于Raspberry Pi和OpenAI API搭建的智能家居助手 GPT Home是一个基于Raspberry Pi和OpenAI API搭建的智能家居助手&#xff0c;功能上类似于Google Nest Hub或Amazon Alexa。通过详细的设置指南和配件列表&#xff0c;用户可以自行组装和配置这个设备&#x…

Ansible自动运维工具之playbook

一.inventory主机清单 1.定义 Inventory支持对主机进行分组&#xff0c;每个组内可以定义多个主机&#xff0c;每个主机都可以定义在任何一个或多个主机组内。 2.变量 &#xff08;1&#xff09;主机变量 [webservers] 192.168.10.14 ansible_port22 ansible_userroot ans…

使用sqlmodel实现唯一性校验

代码&#xff1a; from sqlmodel import Field, Session, SQLModel, create_engine# 声明模型 class User(SQLModel, tableTrue):id: int | None Field(defaultNone, primary_keyTrue)# 不能为空&#xff0c;必须唯一name: str Field(nullableFalse, uniqueTrue)age: int | …

Flutter弹窗链-顺序弹出对话框

效果 前言 弹窗的顺序执行在App中是一个比较常见的应用场景。比如进入App首页&#xff0c;一系列的弹窗就会弹出。如果不做处理就会导致弹窗堆积的全部弹出&#xff0c;严重影响用户体验。 如果多个弹窗中又有判断逻辑&#xff0c;根据点击后需要弹出另一个弹窗&#xff0c;这…

大数据Scala教程从入门到精通第五篇:Scala环境搭建

一&#xff1a;安装步骤 1&#xff1a;scala安装 1&#xff1a;首先确保 JDK1.8 安装成功: 2&#xff1a;下载对应的 Scala 安装文件 scala-2.12.11.zip 3&#xff1a;解压 scala-2.12.11.zip 4&#xff1a;配置 Scala 的环境变量 在Windows上安装Scala_windows安装scala…

(delphi11最新学习资料) Object Pascal 学习笔记---第11章第1节 (Weak 和 Unsafe 类型接口引用)

11.1.4 Weak 和 Unsafe 类型接口引用 ​ 从 Delphi 10.1 Berlin 开始&#xff0c;Object Pascal 语言对接口引用的管理进行了优化。实际上&#xff0c;Object Pascal 语言提供了不同类型的引用&#xff1a; 常规引用在分配和释放时分别递增和递减对象引用计数&#xff0c;最终…

控制元素隐藏

一、隐藏元素 在CSS中&#xff0c;有几种方法可以隐藏元素&#xff0c;每种方法都有其特定的用例和效果。以下是一些常用的CSS属性和技巧&#xff0c;用于隐藏元素&#xff1a; display: none; 这是最常用的隐藏元素的方法。它会将元素完全从文档流中移除&#xff0c;元素不会…

docker搭建代码审计平台sonarqube

docker搭建代码审计平台sonarqube 一、代码审计关注的质量指标二、静态分析技术分类三、sonarqube流程四、快速搭建sonarqube五、sonarqube scanner的安装和使用 一、代码审计关注的质量指标 代码坏味道 代码规范技术债评估 bug和漏洞代码重复度单测与集成 测试用例数量覆盖率…

node报错——解决Error: error:0308010C:digital envelope routines::unsupported——亲测可用

今天在打包vue2项目时&#xff0c;遇到一个报错&#xff1a; 最关键的代码如下&#xff1a; Error: error:0308010C:digital envelope routines::unsupportedat new Hash (node:internal/crypto/hash:80:19)百度后发现是node版本的问题。 在昨天我确实操作了一下node&…

Ansible——Playbook剧本

目录 一、Playbook概述 1.Playbook定义 2.Playbook组成 3.Playbook配置文件详解 4.运行Playbook 4.1Ansible-Playbook相关命令 4.2运行Playbook启动httpd服务 4.3变量的定义和引用 4.4指定远程主机sudo切换用户 4.5When——条件判断 4.6迭代 4.6.1创建文件夹 4.6.2…