自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 问答 (1)
  • 收藏
  • 关注

原创 Servlet转发不了

今天在 学 servlet转发技术的时候代码看了 好久 没问题 就是转发不了原来 我在第一个 servlet1 里面转发的是 在 do get 方法里面进行的但是。。。。 转发的对象servlet2是 默认 do post方法所以接受不到我的 转发 自然也不会在控制台打印我所得到的值了转发一定要记住 转发后使用的方法要一致...

2019-12-26 22:09:25 674

原创 弗洛伊德算法

#include<iostream>#include<string.h>#include<stdlib.h>#include<stdio.h>using namespace std;#define Max 50 typedef struct { char data; //顶点的数据 ...

2019-12-17 18:56:34 100

原创 迪杰斯特拉算法

#include<iostream>#include<string.h>using namespace std;#define Max 50 typedef struct { char data; //顶点的数据 int num;//顶点的数组下标 }VertexType;...

2019-12-15 13:06:10 158

原创 最小生成树最小权值(克鲁斯卡尔算法)

#include<iostream>#include<string.h>#define Max 50using namespace std; typedef struct student { int v1,v2; int weight; }edge; typedef struct ss { ...

2019-12-10 21:03:01 2705

原创 普利姆算法求最小生成树权值之和

![#include<iostream>#include<string.h>using namespace std;#define Max 50 typedef struct { char data; //顶点的数据 int num;//顶点的数组下标 }VertexType;...

2019-12-10 17:29:30 2324

原创 邻接表

#include<iostream>#include<queue>#include<string.h>#include<stack>using namespace std;#define Max 50// 最大节点数 typedef struct ArcNodes { int v; //数组下...

2019-12-06 17:35:16 70

原创 邻接矩阵

#include<iostream>#include<queue>#include<stack>#include<string.h>using namespace std;#define Max 50 typedef struct { char data; //顶点的数据 ...

2019-12-06 17:34:35 115

空空如也

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

TA关注的人

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