This time, you are supposed to find A+B where A and B are two matrices, and then count the number of zero rows and columns. The input consists of seve ...
分类:
其他好文 时间:
2018-10-02 17:46:55
阅读次数:
190
++++++++++++++构建MFS分布式文件系统++++++++++++++PB级别:企业存储空间达到PB级别,即100万GB空间。(1PB=1000TB,1TB=1000GB,1GB=1000MB)MFS原理:MFS是一个具有容错额网络分布式文件系统,他把数据分散存放在多个物理服务器上,而呈现 ...
分类:
其他好文 时间:
2018-10-01 00:10:09
阅读次数:
168
XOR is a kind of bit operator, we define that as follow: for two binary base number A and B, let C=A XOR B, then for each bit of C, we can get its val ...
分类:
其他好文 时间:
2018-09-29 23:54:44
阅读次数:
210
Slava plays his favorite game "Peace Lightning". Now he is flying a bomber on a very specific map. Formally, map is a checkered field of size 1?×?n, t ...
分类:
其他好文 时间:
2018-09-24 11:17:01
阅读次数:
228
前言 并行编程:通过编码方式利用多核或多处理器称为并行编程,多线程概念的一个子集。 并行处理:把正在执行的大量的任务分割成小块,分配给多个同时运行的线程。多线程的一种。 并行编程分为如下几个结构: 1.并行的LINQ或PLINQ 2.Parallel类 3.任务并行结构 4.并发集合 5.SpinL ...
分类:
其他好文 时间:
2018-09-22 12:54:14
阅读次数:
214
问题背景同事发现一台centos7机器的yumrepo不能使用,现象为相关的repo的meta文件下载失败,提示相关meta文件的下载路径有问题。问题分析通过终端输出的报错,发现是/etc/yum.repos.d/*.repo配置文件中\$releasever变量没有加载到正确的值。我们下面先看看yum几个主要变量的作用和设置方法。yum相关变量$arch作用:标识cpu的架构,如i386,i48
分类:
其他好文 时间:
2018-09-15 18:17:31
阅读次数:
190
一、概述 gitlab是开源代码托管软件,有ce和ee两种版本,一般情况下ce完全能满足企业使用,如果不差钱可以使用ee版本,这里使用的是ce版。之前也一直在做CI/CD,最开始采用gitlab+webhook+jenkins,但是这种组合略显笨重,后来经过一番探索原来gitlab早就自己做好了这一 ...
分类:
其他好文 时间:
2018-09-14 11:55:10
阅读次数:
1220
#include #include using namespace std; int main() { //第一个循环用于输入,遇到#停止 while (1) { //第二个循环用于单次输入的每个字符的判断 while (1) { char c; c = getchar(); ... ...
分类:
其他好文 时间:
2018-09-07 23:57:29
阅读次数:
346
The opposite component is the other component affected in a focus event. Specifically, in a focus-lost event, the opposite component is the one gainin ...
分类:
其他好文 时间:
2018-09-06 10:50:34
阅读次数:
157
题目链接: "HDU 1548" Description There is a strange lift.The lift can stop can at every floor as you want, and there is a number Ki(0 include include incl ...
分类:
其他好文 时间:
2018-09-05 21:52:26
阅读次数:
160