JAVA GUI 植物大战僵尸

公众号:编程驿站

没有做太多封装。难免有冗余。源码全部放出,有兴趣者可以再改之。

1. pea 类

package com.hm;import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;/***/
public class Pea {BufferedImage image;int x;int y;Rectangle rectangle;//宽度//高度int size;public Pea(int x, int y) throws IOException {this.image= ImageIO.read(new File("images/background/pea.png"));this.x=x;this.y=y;this.size=25;this.rectangle=new Rectangle(this.x,this.y,this.size,this.size);}public void draw(Graphics g){g.drawImage(this.image,this.x,this.y,this.size,this.size,null);this.rectangle=new Rectangle(this.x,this.y,this.size,this.size);this.x+=50;}
}

2. PeaShooter

package com.hm;import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;public class PeaShooter {BufferedImage image;int x;int y;Rectangle rectangle;//预加载所有豌豆射手图片BufferedImage[] images=new BufferedImage[13];int index=0;int live=40;public PeaShooter(int x,int y) throws IOException {this.x=x;this.y=y;for (int i = 0; i <13 ; i++) {String code=i<9?"0"+(i+1):(i+1)+"";images[i]= ImageIO.read(new File("images/peashooter/PeaShooter_"+code+".png"));}this.image=images[index];this.rectangle=new Rectangle(this.x,this.y,this.image.getWidth(),this.image.getHeight());}public void draw(Graphics graphics){index=++index%13;//0 12this.image=images[index];this.rectangle=new Rectangle(this.x,this.y,this.image.getWidth(),this.image.getHeight());// graphics.drawRect(this.x,this.y,this.image.getWidth(),this.image.getHeight());graphics.drawImage(this.image,this.x,this.y,this.image.getWidth(),this.image.getHeight(),null);}
}

3. Sun

package com.hm;import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;/*** 自然光(随机)* 向日葵生产(与向日葵)*/
public class Sun {BufferedImage image;int x;int y;Rectangle rectangle;//宽度//高度int size;//是否被鼠标点击int isMeetMouse=0;//x长度int xlength;//yint ylength;public Sun(int x,int y) throws IOException {this.image= ImageIO.read(new File("images/background/Sun.png"));this.x=x;this.y=y;this.size=60;this.rectangle=new Rectangle(this.x,this.y,this.size,this.size);}public void draw(Graphics g){this.rectangle=new Rectangle(this.x,this.y,this.size,this.size);g.drawImage(this.image,this.x,this.y,this.size,this.size,null);}
}

4. SunFlower

package com.hm;import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;public class SunFlower {BufferedImage image;int x;int y;Rectangle rectangle;//预加载所有豌豆射手图片BufferedImage[] images=new BufferedImage[18];int index=0;//生命值int live=30;public SunFlower(int x, int y) throws IOException {this.x=x;this.y=y;for (int i = 0; i <18 ; i++) {String code=i<9?"0"+(i+1):(i+1)+"";images[i]= ImageIO.read(new File("images/SunFlower/SunFlower_"+code+".png"));}this.image=images[index];this.rectangle=new Rectangle(this.x,this.y,this.image.getWidth(),this.image.getHeight());}public void draw(Graphics graphics){index=++index%18;//0 12this.image=images[index];this.rectangle=new Rectangle(this.x,this.y,this.image.getWidth(),this.image.getHeight());//graphics.drawRect(this.x,this.y,this.image.getWidth(),this.image.getHeight());graphics.drawImage(this.image,this.x,this.y,this.image.getWidth(),this.image.getHeight(),null);}
}

5. Zombie

package com.hm;import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;public class Zombie {BufferedImage image;int x;int y;Rectangle rectangle;//预加载所有豌豆射手图片BufferedImage[] walkImages = new BufferedImage[31];BufferedImage[] dieImages = new BufferedImage[10];BufferedImage[] headImages = new BufferedImage[10];//吃播图片BufferedImage[] eatImages = new BufferedImage[21];//索引号int index = 0;int index_ = 0;int indexEat = 0;//走 1 正在走,0停int run = 1;//生命值int live = 4;public Zombie(int x, int y) throws IOException {this.x = x;this.y = y;for (int i = 0; i < 31; i++) {String code = i < 9 ? "0" + (i + 1) : (i + 1) + "";walkImages[i] = ImageIO.read(new File("images/Zombie/Walk/Walk_" + code + ".png"));}for (int i = 0; i < 10; i++) {String code = i < 9 ? "0" + (i + 1) : (i + 1) + "";dieImages[i] = ImageIO.read(new File("images/Zombie/Die/Die_" + code + ".png"));}for (int i = 0; i < 10; i++) {String code = i < 9 ? "00" + (i + 1) : "0" + (i + 1);headImages[i] = ImageIO.read(new File("images/Zombie/Head/Head_" + code + ".png"));}for (int i = 0; i < 21; i++) {String code = i < 9 ? "0" + (i + 1) : (i + 1) + "";eatImages[i] = ImageIO.read(new File("images/Zombie/Eat/Eat_" + code + ".png"));}this.image = walkImages[index];this.rectangle = new Rectangle(this.x, this.y, this.image.getWidth(), this.image.getHeight());}public void draw(Graphics graphics) {if (this.live > 0) {if (this.run == 1) {index = ++index % 31;//0 30this.image = walkImages[index];this.x -= 5;} else {indexEat = ++indexEat % 21;//0 30this.image = eatImages[indexEat];}} else {index_ = ++index_ % 10;//0 30this.image = dieImages[index_];graphics.drawImage(this.headImages[index_], this.x, this.y, this.headImages[index_].getWidth() - 20, this.headImages[index_].getHeight() - 20, null);}this.rectangle = new Rectangle(this.x, this.y, this.image.getWidth() - 20, this.image.getHeight() - 20);//graphics.drawRect(this.x, this.y, this.image.getWidth()-20, this.image.getHeight()-20);graphics.drawImage(this.image, this.x, this.y, this.image.getWidth() - 20, this.image.getHeight() - 20, null);}
}

6. MainFrm

package com.hm;import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Random;/*** AudionClip sound_choose=Applet.newAdudioClip(sound1.toURL());*/
public class MainFrm extends JFrame {//创建BackGround backGround = new BackGround();//太阳光数量卡片Card sunCountCard;//生产向日葵Card sunFlowerCard;//生产碗豆射手Card peaShooterCard;//阳光(自然光):定时随时创建Sun sun = null;//随机Random random = new Random();//定时器Timer timer;//阳光从天上移动目标Yint sunTargetY;//鼠标是否点击到阳光int sunMeetMouse = 0;//阳光离收集面板x方向长度int xlength;//阳光离收集面板y方向长度int ylength;Image offScreenImage = null;//阳光数量int sunCount = 500;//射手是否已经创建int isCreatePeaShooter = 0;//射手PeaShooter peaShooter;//是否种下来int isPeaFloor = 0;//子弹Pea pea;//容器(子弹)LinkedList<Pea> peas = new LinkedList();//容器(豌豆射手)LinkedList<PeaShooter> peaShooters = new LinkedList();//僵尸Zombie zombie;LinkedList<Zombie> zombies = new LinkedList();//一个箱子变量向日葵SunFlower sunFlower;//保存所有向日葵LinkedList<SunFlower> sunFlowers = new LinkedList<>();//是否已经存下int isSunFlowerDown = 0;//向日葵生产阳光Sun sun_;//容器,保存所有向口葵生产出来的阳光LinkedList<Sun> suns = new LinkedList<>();//开始BufferedImage startImage;int total = 50; //总量int total_ = total;int count = 0;//房子int isFail=0;//成功BufferedImage okImage;//失败BufferedImage noImage;public MainFrm() throws IOException {startImage = ImageIO.read(new File("images/background/start.jpg"));okImage = ImageIO.read(new File("images/background/trophy.png"));noImage = ImageIO.read(new File("images/background/ZombiesWon.png"));BufferedImage image = ImageIO.read(new File("images/card/plants/SunBank.png"));sunCountCard = new Card(image, 200, 40);sunCountCard.rectangle.setBounds(200, -10, 100, 100);image = ImageIO.read(new File("images/card/plants/SunFlower.png"));sunFlowerCard = new Card(image, 265, 40);image = ImageIO.read(new File("images/card/plants/Peashooter.png"));peaShooterCard = new Card(image, 325, 40);this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);//大小this.setSize(1400, 600);//位置this.setLocation(200, 100);//标题this.setTitle("植物大战僵尸");//this.setResizable(false);//使用定时器timer = new Timer(100, new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {if (sun == null) {try {//创建阳光(自然光)createSun();//定制一个目标点sunTargetY = random.nextInt(300) + 100;} catch (IOException ioException) {ioException.printStackTrace();}} else {//阳光存在让其移动sunMove();}//创建子弹if (pea == null && peaShooters.size() != 0) {try {//根据武器数量调整生产子弹的频率int wuCount = peaShooters.size();int num_ = 5;if (wuCount > 5) {num_ = 1;}int randNum = random.nextInt(num_);//0~9if (randNum == 0) { //1/5int num = random.nextInt(peaShooters.size());////从武器库中根据随机数字得到武器PeaShooter ps = peaShooters.get(num);if (ps != peaShooter) {//随机出来的武器不是正在移动的武器pea = new Pea(ps.x + 80, ps.y);//添加容器中peas.addLast(pea);pea = null;}}} catch (Exception ioException) {ioException.printStackTrace();}}//向日葵生产阳光if (sun_ == null && sunFlowers.size() != 0) {try {//频率int wuCount = sunFlowers.size();int num_ = 20;if (wuCount > 10) {num_ = 10;}int randNum = random.nextInt(num_);//0~9if (randNum == 0) { //1/5int num = random.nextInt(sunFlowers.size());////根据随机数字得到太阳花SunFlower ps = sunFlowers.get(num);if (ps != sunFlower) {sun_ = new Sun(ps.x, ps.y);//添加容器中suns.addLast(sun_);sun_ = null;}}} catch (Exception ioException) {ioException.printStackTrace();}}if (suns.size() != 0) {sunMove_();}//生产僵尸if (zombie == null && count != total_) {int jsNum = random.nextInt(30);if (jsNum == 10) {int y = random.nextInt(350) + 50;//0~9try {zombie = new Zombie(1300, y);count++;zombies.addLast(zombie);zombie = null;} catch (IOException ioException) {ioException.printStackTrace();}}}peaIsMeetZombie();isZombieMeetSunFlowerOrPeaShooter();repaint();}});timer.start();//窗体接收鼠标点击this.addMouseMotionListener(new MouseMotionAdapter() {@Overridepublic void mouseMoved(MouseEvent e) {if (peaShooter != null) {if (isPeaFloor == 0) {//没有种下时与鼠标一起移动peaShooter.x = e.getX();peaShooter.y = e.getY();} else {//种下之后恢复变量到初始状态peaShooter = null;isPeaFloor = 0;}}if (sunFlower != null) {if (isSunFlowerDown == 0) {//没有种下时与鼠标一起移动sunFlower.x = e.getX();sunFlower.y = e.getY();} else {//种下之后恢复变量到初始状态sunFlower = null;isSunFlowerDown = 0;}}}});this.addMouseListener(new MouseAdapter() {@Overridepublic void mouseClicked(MouseEvent e) {//鼠标坐标是否和阳光的坐标叠if (sunMeetMouse == 0 && sun != null) {if (sun.rectangle.contains(e.getX(), e.getY())) {sunMeetMouse = 1;xlength = Math.abs(sun.x - 200);ylength = Math.abs(sun.y - 40);}}//检查鼠标是不是点击到了向日葵所生产的阳光if (suns.size() != 0) {for (Sun s : suns) {if (s.rectangle.contains(e.getX(), e.getY())) {//有阳光碰到鼠标s.isMeetMouse = 1;s.xlength = Math.abs(s.x - 200);s.ylength = Math.abs(s.y - 40);break;}}}//种植武器if (peaShooter == null) {if (peaShooterCard.rectangle.contains(e.getX(), e.getY())) {if (sunCount >= 100) {try {//创建一个 武器peaShooter = new PeaShooter(e.getX(), e.getY());//放置武器容器peaShooters.addLast(peaShooter);sunCount -= 100;} catch (IOException ioException) {ioException.printStackTrace();}}}} else {isPeaFloor = 1;}//种植太阳花if (sunFlower == null) {if (sunFlowerCard.rectangle.contains(e.getX(), e.getY())) {if (sunCount >= 50) {try {//创建一个 武器sunFlower = new SunFlower(e.getX(), e.getY());//放置武器容器sunFlowers.addLast(sunFlower);sunCount -= 50;} catch (IOException ioException) {ioException.printStackTrace();}}}} else {isSunFlowerDown = 1;}}});}@Overridepublic void paint(Graphics g) {super.paint(g);if (offScreenImage == null) {offScreenImage = this.createImage(1400, 600);}g.drawImage(offScreenImage, 0, 0, null);Graphics gOffScreen = offScreenImage.getGraphics();//2DGraphics2D graphics2D = (Graphics2D) gOffScreen;gOffScreen.fillRect(0, 0, 1400, 600);gOffScreen.setColor(Color.white);this.backGround.draw(gOffScreen);this.sunCountCard.draw(gOffScreen);this.sunFlowerCard.draw(gOffScreen);this.peaShooterCard.draw(gOffScreen);//绘制分值gOffScreen.setFont(new Font("黑体", Font.BOLD, 20));gOffScreen.setColor(Color.red);gOffScreen.drawString(this.sunCount + "", 215, 110);//绘制所有武器if (this.peaShooters != null) {for (int i = 0; i < peaShooters.size(); i++) {peaShooters.get(i).draw(gOffScreen);}}//绘制所有太阳花if (this.sunFlowers != null) {for (int i = 0; i < sunFlowers.size(); i++) {sunFlowers.get(i).draw(gOffScreen);}}//绘制阳光if (this.sun != null)this.sun.draw(gOffScreen);//绘制所有僵尸if (zombies.size() != 0) {for (int i = 0; i < zombies.size(); i++) {zombies.get(i).draw(gOffScreen);}}//绘制豌豆子弹if (peas != null) {for (int i = 0; i < peas.size(); i++) {if (peas.get(i).x > 1400) {peas.remove(peas.get(i));continue;}peas.get(i).draw(gOffScreen);}}//绘制豌豆子弹if (suns != null) {for (int i = 0; i < suns.size(); i++) {if (suns.get(i).x > 1400) {suns.remove(suns.get(i));continue;}suns.get(i).draw(gOffScreen);}}gOffScreen.setFont(new Font("黑体", Font.BOLD, 30));//绘制数量gOffScreen.drawString("当前的僵尸数量:" + this.total, 400, 100);//全部消灭之后if (this.total == 0) {gOffScreen.drawImage(this.okImage, 600, 200, this.okImage.getWidth(), this.okImage.getHeight(), null);}if (this.isFail==1){gOffScreen.drawImage(this.noImage, 400, 100, this.noImage.getWidth(), this.noImage.getHeight(), null);}}/*** 生产自然光*/public void createSun() throws IOException {//指定位置int y = -100;int x = this.random.nextInt(500) + 260;//260 760sun = new Sun(x, y);}/*** 移动阳光*/public void sunMove() {//确定目标坐标if (sunMeetMouse == 0) {if (this.sun.y < this.sunTargetY)this.sun.y += 25;} else if (sunMeetMouse == 1) {if (this.sunCountCard.rectangle.contains(this.sun.x + 50, this.sun.y + 50)) {this.sunCount += 25;//重置阳光数据this.sun = null;this.sunMeetMouse = 0;} else {//设定y速度int yspeed = 15;//求解X轴int xspeed = (yspeed * xlength) / ylength;this.sun.x -= xspeed;this.sun.y -= yspeed;}}if (this.sun != null)this.sun.rectangle.setBounds(this.sun.x, this.sun.y, this.sun.size, this.sun.size);}public void sunMove_() {//确定目标坐标for (int i = 0; i < suns.size(); i++) {Sun s = suns.get(i);if (s == null)continue;if (s.isMeetMouse == 1) {if (this.sunCountCard.rectangle.intersects(s.rectangle)) {this.sunCount += 25;//重置阳光数据s.isMeetMouse = 0;suns.remove(s);} else {//设定y速度int yspeed = 15;//求解X轴int xspeed = (yspeed * s.xlength) / s.ylength;s.x -= xspeed;s.y -= yspeed;}}}}//添加方法:检查子弹是不是碰到了僵尸public void peaIsMeetZombie() {//for (int i = 0; i < zombies.size(); i++) {//僵尸Zombie zb = zombies.get(i);if (zb == null)continue;//回收if (zb.index_ >= 9) {zombies.remove(zb);this.total--;if (this.total == 0) {//timer.stop();//repaint();// return;}break;}//检查是否已经全部死亡for (int j = 0; j < peas.size(); j++) {Pea p = peas.get(j);if (p == null)continue;if (zb.rectangle.intersects(p.rectangle)) {if (zb.live > 0)zb.live -= 1;peas.remove(p);}}}}/*** 僵尸碰到植物*/public void isZombieMeetSunFlowerOrPeaShooter() {for (int i = 0; i < zombies.size(); i++) {Zombie zb = zombies.get(i);if (zb == null) continue;if (zb.x<150){this.isFail=1;}if (zb.x<130){timer.stop();return;}//太阳花for (int j = 0; j < sunFlowers.size(); j++) {SunFlower sf = sunFlowers.get(j);if (sf == null) continue;if (zb.rectangle.contains(sf.rectangle) && sunFlower == null) {if (sf.live > 0) {zb.run = 0;sf.live--;} else {zb.run = 1;sunFlowers.remove(sf);}break;}}for (int j = 0; j < peaShooters.size(); j++) {PeaShooter ps = peaShooters.get(j);if (ps == null) continue;if (zb.rectangle.contains(ps.rectangle) && peaShooter == null) {if (ps.live > 0) {zb.run = 0;ps.live--;} else {zb.run = 1;peaShooters.remove(ps);}break;}}}}
}

7. Card

package com.hm;import java.awt.*;
import java.awt.image.BufferedImage;public class Card {//图片BufferedImage image;int x;int y;//范围Rectangle rectangle;public Card(BufferedImage image,int x,int y){this.image=image;this.x=x;this.y=y;this.rectangle=new Rectangle(this.x,this.y,60,75);}/*** 绘制*/public void draw(Graphics graphics){graphics.drawImage(this.image,this.x,this.y,60,75,null);}
}

8.BackGround

package com.hm;import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;/*** 背景有关代码*/
public class BackGround {//图片BufferedImage image;//位置 xint x;//yint y;public BackGround() throws IOException {//加载图片this.image= ImageIO.read(new File("images/background/background1.jpg"));this.x=0;this.y=0;}/*** 绘制*/public  void draw(Graphics graphics){graphics.drawImage(this.image,this.x,this.y,1400,600,null);}
}公众号里回复   植物大战僵尸  获取源代码和素材!```

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

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

相关文章

物业水电抄表系统的全面解析

1.系统概述 物业水电抄表系统是现代物业管理中的重要组成部分&#xff0c;它通过自动化的方式&#xff0c;实时监控和记录居民或企业的水电使用情况&#xff0c;极大地提高了工作效率&#xff0c;降低了人工抄表的错误率。该系统通常包括数据采集、数据传输、数据分析和数据展…

链表OJ题(移除链表元素,反转链表,分割链表,环形链表(是否成环问题),链表中间节点(快慢指针讲解),环形链表(找入环节点))“题目来源力扣附带题目链接”

目录 1.移除链表元素 2.反转链表 2.1三指针法 2.2头插法 3.分割链表 4.链表的中间节点&#xff08;快慢指针&#xff09; 4.1快慢指针 4.2求链表的中间节点 5.环形链表 5.1环形链表是否成环 5.2环形链表入环节点 5.3入环节点推论的不完备性说明 1.移除链表元素 移除…

Microsoft Threat Modeling Tool 使用(三)

Boundary&#xff08;边界&#xff09; 本文介绍信任边界&#xff0c;基于 SDL TM Knowledge Base (Core) 模版&#xff0c;这是一个通用的威胁建模模板&#xff0c;非常适合初学者和大多数威胁建模需求。 这些边界&#xff08;Boundary&#xff09;在微软威胁建模工具中用于表…

Java多线程与高并发

1、什么是进程?什么是线程? 进程:进程是程序的基本执行实体;另外一种解释是进程是一个应用程序(1个进程是一个软件)。 线程:线程是操作系统能够进行运算调度的最下单位。它被包含在进程之中,是进程中的实际运作单位;是一个进程中的执行场景/执行单元。 注意:。一个进…

uniapp实现列表拖拽排序+滑动删除功能

此篇代码在原插件基础进行了bug修改与滑动功能的新增 原插件地址 HM-dragSorts.vue组件使用 HM-dragSorts.vue <template><view class""><view class"HM-drag-sort" :style"{height: ListHeightrpx,background-color: listBackground…

魔法方法介绍

【一】什么是魔法方法 在类内部达到指定条件会自动触发的方法 【二】魔法方法 # 【1】__init__ &#xff1a; 实例化类得到对象的时候会自动触发 class Student(object):def __init__(self):print(f"实例化类的时候触发") # 实例化类的时候触发 ​ s Student…

在云服务器上运行StyleGAN3生成伪样本

首先是传入数据&#xff0c;这里我们不做赘述。 对于数据格式的裁剪&#xff0c;可以通过以下代码进行&#xff1a; from glob import glob from PIL import Image import os from tqdm import tqdm from tqdm.std import trangeimg_path glob(r"C:\Users\Administrato…

【Oracle篇】rman物理备份工具的基础理论概述(第一篇,总共八篇)

☘️博主介绍☘️&#xff1a; ✨又是一天没白过&#xff0c;我是奈斯&#xff0c;DBA一名✨ ✌✌️擅长Oracle、MySQL、SQLserver、阿里云AnalyticDB for MySQL(分布式数据仓库)、Linux&#xff0c;也在扩展大数据方向的知识面✌✌️ ❣️❣️❣️大佬们都喜欢静静的看文章&am…

嵌入式是大坑的说法,是否与学生的信息不对称有关?

在开始前我有一些资料&#xff0c;是我根据网友给的问题精心整理了一份「嵌入式的资料从专业入门到高级教程」&#xff0c; 点个关注在评论区回复“888”之后私信回复“888”&#xff0c;全部无偿共享给大家&#xff01;&#xff01;&#xff01; 目前也算是在搞嵌入式&#…

【深度学习】时空图卷积网络(STGCN),预测交通流量

论文地址&#xff1a;https://arxiv.org/abs/1709.04875 Spatio-Temporal Graph Convolutional Networks: A Deep Learning Framework for Traffic Forecasting 文章目录 一、摘要二、数据集介绍美国洛杉矶交通数据集 METR-LA 介绍美国加利福尼亚交通数据集 PEMS-BAY 介绍美国…

Cocktail for Mac 激活版:一站式系统优化与管理神器

Cocktail for Mac是一款专为Mac用户打造的系统优化与管理工具&#xff0c;凭借其强大的功能和简便的操作&#xff0c;赢得了广大用户的喜爱。这款软件集系统清理、修复和优化于一身&#xff0c;能够帮助用户轻松解决Mac系统中的各种问题&#xff0c;提高系统性能。 Cocktail fo…

Leetcode-有效的括号(带图)

20. 有效的括号 - 力扣&#xff08;LeetCode&#xff09;https://leetcode.cn/problems/valid-parentheses/ 题目 给定一个只包括 (&#xff0c;)&#xff0c;{&#xff0c;}&#xff0c;[&#xff0c;] 的字符串 s &#xff0c;判断字符串是否有效。 有效字符串需满足&…

在做题中学习(59):除自身以为数组的乘积

238. 除自身以外数组的乘积 - 力扣&#xff08;LeetCode&#xff09; 解法&#xff1a;前缀积和后缀积 思路&#xff1a;answer中的每一个元素都是除自己以外所有元素的和。那就处理一个前缀积数组和后缀积数组。 而前缀积(f[i])是&#xff1a;[0,i-1]所有元素的乘积 后缀…

如何利用香港多IP服务器实现定制化的网络服务

如何利用香港多IP服务器实现定制化的网络服务 在当今数字化快速发展的时代&#xff0c;企业对于网络服务的需求日益增加&#xff0c;尤其是对于定制化和高度可调整的网络服务的需求。香港&#xff0c;作为国际金融中心和数据中心的枢纽&#xff0c;提供了优越的网络基础设施和…

什么是蜜罐,在当前网络安全形势下,蜜罐能提供哪些帮助

在当前的互联网时代&#xff0c;网络安全威胁日益严峻&#xff0c;攻击手段层出不穷。为了应对这些威胁&#xff0c;网络安全专家们不断探索新的防御手段&#xff0c;在过去的几年里&#xff0c;一种更加积极主动的网络安全方法正在兴起。蜜罐技术便是这样一种备受瞩目的主动防…

【教学类-55-05】20240516图层顺序挑战(三格长条纸加黑色边框、3*3、5张,不重复7186张,9坐标点颜色哈希值去重、保留5色)

背景需求&#xff1a; 前期测试了4*4框格种的8种颜色&#xff0c;随机抽取7种&#xff0c;随机排列图层&#xff0c;去掉相同的图片、保留7种颜色的图片&#xff0c;最后获得5400张样图 【教学类-55-04】20240515图层顺序挑战&#xff08;四格长条纸加黑色边框、4*4、7张&…

Python程序设计 文件处理(二)

实验十二 文件处理 第1关&#xff1a;读取宋词文件&#xff0c;根据词人建立多个文件 读取wjcl/src/step1/宋词.txt文件&#xff0c; 注意&#xff1a;宋词文件的标题行的词牌和作者之间是全角空格&#xff08;" ")可复制该空格 在wjcl/src/step3/cr文件夹下根据每…

【CSND博客纪念】“创作纪念日:从灵感迸发到小有成就——我的CSND博客创作之旅”

&#x1f3a9; 欢迎来到技术探索的奇幻世界&#x1f468;‍&#x1f4bb; &#x1f4dc; 个人主页&#xff1a;一伦明悦-CSDN博客 ✍&#x1f3fb; 作者简介&#xff1a; C软件开发、Python机器学习爱好者 &#x1f5e3;️ 互动与支持&#xff1a;&#x1f4ac;评论 &…

记录下git的基本操作

初始化git git init git clone 拉取各分支的最新代码 git fetch 切换分支 git checkout 分支名 提交相关操作 git add . git commit -m “提交备注” 两个一起 git commit -am “提交备注” 如果需要撤销操作 git log 查询日志,提交id git revert git revert HEAD 撤销前一…

算法分析与设计复习__递归方程与分治

总结自&#xff1a;【算法设计与分析】期末考试突击课_哔哩哔哩_bilibili 1.递归&#xff0c;递归方程 1.1递归条件: 1.一个问题的解可以分解为几个子问题的解&#xff1b; 2.这个问题与分解之后的子问题&#xff0c;除了数据规模不同&#xff0c;求解思路完全一样; 3.存在…