自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (2)
  • 收藏
  • 关注

原创 西工大离散数学满分大作业

使用floyd计算最短路径

2022-06-29 13:12:33 231

原创 类的重用oop

4.1 类的继承• 4.2 Object类 • 4.3 终结类与终结方法• 4.4 抽象类• 4.5 泛型• 4.6 类的组合• 4.7 包的应用• 4.8 本章小结

2022-05-17 11:31:50 136 1

原创 僵尸又来了

#include <iostream>#include<queue>using namespace std;char maze[200][200];int used[200][200][10];int direct[4][2]={{-1,0},{0,1},{1,0},{0,-1}};class node{public: int x,y; int time;};int bfs(node start,int m,int n,int p,int t){ qu.

2021-10-23 09:14:09 267

原创 僵尸来了NOJ

#include<iostream>#include<queue>using namespace std;char maze[200][200];int direct[4][2] = { {-1,0},{0,1},{1,0},{0,-1} };int used[200][200][10];class node {public: int x, y; int t; int s;};int bfs(node start, int m, int n) { que.

2021-10-22 21:06:47 267

原创 NOJ 僵尸又又来了

#include<iostream>#include<queue>using namespace std;char maze[201][201] ;int direct[4][2] = { {-1,0},{0,1},{1,0},{0,-1} };class node {public: int x; int y; int b; int time;};int used[200][200][10];//注意要区分不同血量的僵尸int bfs(node st...

2021-10-22 21:00:24 269

原创 NOJ 跳马

//跳马!!!!!!!!!#include<iostream>#include<queue>using namespace std;class K0 {public: int x; int y; int s;};int search(int x1, int y1, int x2, int y2, queue<K0>l)//搜索{ K0 start, end; int a[200][200] = { 0 }; start.x = x1; ..

2021-10-20 19:57:41 90

西工大离散数学满分大作业

西工大离散数学满分大作业

2022-06-29

离散数学的思维导图整理

西工大离散数学,结合方、徐书。最后格的部分不太全,懒得整理了。建议工大学子,最后一节课去听李秀春老师的课,有惊喜

2022-06-21

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除