上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 29 下一页
摘要: #include <bits/stdc++.h> #include <stdio.h> #include <stdlib.h> #include <queue> using namespace std; const int maxn = 110; struct node{ int lchild,rc 阅读全文
posted @ 2020-01-24 16:48 JasonPeng1 阅读(155) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> #include <stdio.h> #include <stdlib.h> #include <queue> using namespace std; const int maxn = 50; struct node{ int data; node 阅读全文
posted @ 2020-01-23 23:15 JasonPeng1 阅读(118) 评论(0) 推荐(0)
摘要: 若直接DFS递归求解,会栈溢出 #include <cstdio> #include <cstring> #include <queue> #include <algorithm> using namespace std; const int maxn=50; struct node{ int da 阅读全文
posted @ 2020-01-21 21:58 JasonPeng1 阅读(272) 评论(0) 推荐(0)
摘要: Getting Started Guides 成果图: 原文: https://spring.io/guides/gs/relational-data-access/#scratch 中文版:https://github.com/SpringForAll/spring-guides-translat 阅读全文
posted @ 2020-01-21 16:32 JasonPeng1 阅读(340) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-01-20 22:46 JasonPeng1 阅读(225) 评论(0) 推荐(0)
摘要: #pragma warning(disable:4996) #include <stdio.h> #include <stdlib.h> #include <queue> using namespace std; struct node{ int x, y, z; }p; int m, n, l, 阅读全文
posted @ 2020-01-19 22:44 JasonPeng1 阅读(104) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> #include<math.h> #include <string> using namespace std; //maxFacSum 记录最大底数之和 int n,k,p,maxFaceSum = -1; vector<int> fac,ans,t 阅读全文
posted @ 2020-01-19 18:08 JasonPeng1 阅读(131) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> #include<math.h> #include <string> using namespace std; const int maxn = 100005; const int TABLE = 1000010; struct Node{//定义静 阅读全文
posted @ 2020-01-19 17:11 JasonPeng1 阅读(130) 评论(0) 推荐(0)
摘要: 自己写的,少了异常处理。 #include <bits/stdc++.h> #include<math.h> #include <string> using namespace std; const int maxn = 100010; struct Node{//定义静态链表 int data; 阅读全文
posted @ 2020-01-19 00:21 JasonPeng1 阅读(113) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> #include<math.h> #include <string> using namespace std; const int maxn = 100010; struct Node{//定义静态链表 char data; int next; bo 阅读全文
posted @ 2020-01-18 20:11 JasonPeng1 阅读(160) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 29 下一页