上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 32 下一页
摘要: #include<iostream>#include<vector>#define _CRT_SECURE_NO_WARNINGS 1using namespace std;int main(){ int n,p; //scanf("%d%d",&n,&p); cin>>n>>p; vector<i 阅读全文
posted @ 2023-12-14 20:29 涨涨涨张 阅读(5) 评论(0) 推荐(0) 编辑
摘要: public class jdbctest { public static void main(String[] args) throws Exception{ String url="jdbc:mysql://localhost:3306/da?useUnicode=true&characterE 阅读全文
posted @ 2023-12-13 17:22 涨涨涨张 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 如果将metadata-complete设置为false会导致工件部署错误,这可能是由于以下原因之一: 部署描述符(web.xml)中存在错误或不完整的配置。当metadata-complete设置为false时,容器将扫描和解析部署描述符来获取应用程序的配置信息。如果web.xml中存在错误或缺少 阅读全文
posted @ 2023-12-11 15:21 涨涨涨张 阅读(499) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<cstring>#include<cstdio>using namespace std;const int N=1010;struct edge{ int v,w; edge* next;};struct node{ int k; edge* n 阅读全文
posted @ 2023-12-08 17:32 涨涨涨张 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;#define N 100typedef char OtherInfo;int visited[N]={0}; typedef struct ArcNode{int adjvex;OtherInfo info;struct 阅读全文
posted @ 2023-12-08 17:32 涨涨涨张 阅读(36) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int main(int argc, const char *argv[]) { int n, k; int h[100000]; int w[100000]; cin >> n >> k; for (int i = 阅读全文
posted @ 2023-12-06 16:41 涨涨涨张 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 哈夫曼树哈夫曼编码 输入一组整型权值,构建哈夫曼树,实现哈夫曼编码,并输出带权路径长度。 #include<iostream>#include<cstring>using namespace std;typedef char**HuffmanCode; typedef struct{ int wei 阅读全文
posted @ 2023-11-30 15:26 涨涨涨张 阅读(21) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;//邻接表:顶点表、边表、邻接表#define MVNum 100typedef char OtherInfo;typedef struct ArcNode//边表{ int adjvex;//下标 struct ArcNo 阅读全文
posted @ 2023-11-28 23:28 涨涨涨张 阅读(13) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;//邻接矩阵需要顶点表,二维矩阵,还有点数边数#define MVNum 100typedef struct{ char vexs[MVNum]; //顶点表 int arcs[MVNum][MVNum]; //矩阵 int 阅读全文
posted @ 2023-11-28 23:28 涨涨涨张 阅读(18) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<cstdio>#include<string>using namespace std;const int N=100010;string split(string s){string ss;for(int i=0;i<s.size();i++){ 阅读全文
posted @ 2023-11-23 15:28 涨涨涨张 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 32 下一页