最新 最热

CAP, BASE, Paxos, and Raft: Key Concepts in Distributed Systems

When discussing the design principles underpinning distributed systems, the CAP theorem and BASE theory serve as essential foundations that warrant our understa...

2023-11-18
1

algorithm 参与度算法

参与度算法是用在计算多个节点之间的参与情况的算法,也就是说在多个已经确认的节点个数之间的一种算法。

2023-10-23
0

algorithm--数组分批次算法

对一个数组,按指写个数n,划为一组。比如有一个数组,包含1200000 的数据,要求每1000为一组。放到一个新的Array里要怎么处理呢。方法肯定有很多,可以一一来验证。...

2023-10-20
0

【HDU 4408】Minimum Spanning Tree(最小生成树计数)

XXX is very interested in algorithm. After learning the Prim algorithm and Kruskal algorithm of minimum spanning tree, XXX finds that there might be multiple so...

2023-09-21
0

聊聊PBE算法

PBE即Password Based Encryption,基于口令的加密,它是一种组合算法,即一般是哈希+对称算法,比如PBEWithMD5AndDES,就是用MD5做哈希,用DES做加解密,而其密钥则是口令+salt基于哈希函数计算而来...

2023-09-12
0

MySQL 8.0 OCP (1Z0-908) 考点精析-性能优化考点5:表连接算法(join algorithm)

我们知道对于Oracle的表连接,根据SQL连接条件主要支持如下三种连接方法(算法):

2023-08-17
0

翻译[RFC6238] TOTP: Time-Based One-Time Password Algorithm

在闲暇时间做了一个TOTP相关的开源项目,在项目初步完成之余,我尝试对[RFC6238]文档进行了翻译,供大家参考与查阅,若有不妥之处,还望各位前辈海涵斧正。...

2023-05-12
0

F - Financial Planning Gym - 102007F 【 二分答案 】

BAPC 2018  The 2018 Benelux Algorithm Programming Contest  &:对于需要的天数来二分,然后验证,注意的是 r 的数据不能开的太小或者太大。#include<bits/stdc++.h>using namespace std;typedef long ......

2023-03-09
0

C++经典算法题-阿姆斯壮数

在三位的整数中,例如153可以满足13 + 53 + 33 = 153,这样的数称之为Armstrong数,试写出一程式找出所有的三位数Armstrong数。

2022-11-30
0

C++经典算法题-完美数

如果有一数n,其真因数(Proper factor)的总和等于n,则称之为完美数(Perfect Number), 例如以下几个数都是完美数: 6 = 1 + 2 + 3 28 = 1 + 2 + 4 + 7 + 14 496 = 1 + 2 + 4 + 8 + 16 + 31 + 62 + 124 + 248...

2022-11-30
0