Another kind of Fibonacci "题目链接" Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Problem Description As we all known ...
分类:
其他好文 时间:
2020-01-30 00:01:58
阅读次数:
104
SMP、NUMA、MPP体系结构介绍 从系统架构来看,目前的商用服务器大体可以分为三类,即对称多处理器结构 (SMP : Symmetric Multi-Processor) ,非一致存储访问结构 (NUMA : Non-Uniform Memory Access) ,以及海量并行处理结构 (MPP ...
分类:
其他好文 时间:
2020-01-29 22:01:08
阅读次数:
67
Behind the scenes in the computer's memory, color is always talked about as a series of 24 bits of information for each pixel. In an image, the color ...
分类:
其他好文 时间:
2020-01-29 21:48:12
阅读次数:
94
今天玩c++的时候遇到一个有趣的问题,后来意识到问题所在的时候,发现原因是自己一直以来都习惯性的忽视编译的警告信息。程序如下: #include<iostream> #include<cstdlib> #include<new> void no_memory(){ std::cout <<"Fail ...
分类:
编程语言 时间:
2020-01-29 14:24:30
阅读次数:
85
mysql8.0.18忘记密码问题 1. 管理员身份进入dos 2. 停止mysql服务 3. 无密码启动 4. 另启一个dos窗口,无密码登录 5. 清空密码 注意:authentication_string采用的是plugin加密方式,故设置为空,不要设置为其他值 6. 启动服务 关闭打开的两个 ...
分类:
数据库 时间:
2020-01-29 14:14:59
阅读次数:
95
Cornfields Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 9378 Accepted: 4420 Description FJ has decided to grow his own corn hybrid in or ...
分类:
其他好文 时间:
2020-01-29 10:24:05
阅读次数:
95
https://blog.csdn.net/vegetable_bird_001/article/details/51858915 主要优化原理和思路 kafka是一个高吞吐量分布式消息系统,并且提供了持久化。其高性能的有两个重要特点: 利用了磁盘连续读写性能远远高于随机读写的特点; 并发,将一个t ...
分类:
其他好文 时间:
2020-01-28 23:05:24
阅读次数:
84
Matrix Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 36547 Accepted: 13109 Description Given an N*N matrix A, whose elements are either 0 ...
分类:
其他好文 时间:
2020-01-28 23:01:20
阅读次数:
73
在高并发情况下,in memory模式下h2的性能要远高于sqlite(单线程下,还是sqlite高很多),当前版本MVStore作为H2的默认存储引擎。 安装h2 windows版本 C:\Program Files (x86)\H2\bin>java -cp h2-1.4.200.jar org ...
分类:
Web程序 时间:
2020-01-28 21:15:54
阅读次数:
1027
#include<iostream> #include<cstring> using namespace std; const int INF=0x3f3f3f3f; int t,e,f,n,dp[10010]; struct node { int p, w; //价值 重量 } no[10000] ...
分类:
其他好文 时间:
2020-01-28 17:27:44
阅读次数:
70