[toc] JVM的内存结构一般指Java的运行时数据区: 由方法区,堆区,虚拟机栈,程序计数器和本地方法栈组成。下面我们依次介绍这5部分。 1.程序计数器(Program Counter Register) 程序计数器:记录下一条要执行的JVM指令的执行地址,字节码解释器工作时就是通过改变程序计数 ...
分类:
其他好文 时间:
2020-02-19 17:34:45
阅读次数:
77
Vova promised himself that he would never play computer games... But recently Firestorm — a well-known game developing company — published their newes ...
分类:
其他好文 时间:
2020-02-17 18:10:55
阅读次数:
91
Freddy Frog is sitting on a stone in the middle of a lake. Suddenly he notices Fiona Frog who is sitting on another stone. He plans to visit her, but ...
分类:
其他好文 时间:
2020-02-15 00:13:57
阅读次数:
103
大水题,dfs判连通块的数量,bfs每个点找朋友圈的最大直径~ #include<bits/stdc++.h> using namespace std; const int maxn=1014; vector<int> g[maxn]; bool visit[maxn]; int N; int ma ...
分类:
其他好文 时间:
2020-02-13 13:20:03
阅读次数:
84
暴力搜索加剪枝~ #include<bits/stdc++.h> using namespace std; const int maxn=1014; int a[maxn]; bool visit[maxn]; vector<int> path,tmp; int N,M,L,cnt=0; void ...
分类:
其他好文 时间:
2020-02-13 13:02:20
阅读次数:
122
按题意枚举每个点,建立缺少该点情况下的最小生成树,取权值最大的~ #include<bits/stdc++.h> using namespace std; const int maxn=1014; const int inf=1e9; int g[maxn][maxn]; int visit[max ...
分类:
其他好文 时间:
2020-02-13 11:20:31
阅读次数:
65
用并查集处理每个家庭的信息,注意标记~ #include<bits/stdc++.h> using namespace std; const int maxn=10010; bool visit[maxn]={false}; int N; struct node { int id; int chil ...
分类:
其他好文 时间:
2020-02-13 00:18:32
阅读次数:
52
对于坐标平面的bfs模板题~ #include<bits/stdc++.h> using namespace std; const int maxn=1010; bool visit[1300][130][80]={false}; int adj[1300][130][80]; int n,m,l, ...
分类:
其他好文 时间:
2020-02-12 23:55:18
阅读次数:
101
咖啡店案例效果图 (一)页面的布局 1. 最上方的header:右下角是四个小图标,像图层一样附加在当前的header部分上。 2. 超链接构成的导航栏,鼠标悬浮的时候字体颜色发生变化。 3. 主体分为左右两栏:边栏 和右侧的主要内容。边栏有一个table ,table下方是图片(圆角阴影),还有倾 ...
分类:
Web程序 时间:
2020-02-10 13:55:15
阅读次数:
128
试实现邻接矩阵存储图的深度优先遍历。 函数接口定义: void DFS( MGraph Graph, Vertex V, void (*Visit)(Vertex) ); 其中MGraph是邻接矩阵存储的图,定义如下: typedef struct GNode *PtrToGNode; struct ...
分类:
其他好文 时间:
2020-02-08 18:01:29
阅读次数:
62