std
-
实现SM4算法(16字节版)
base_sm4.h #pragma once #include <vector> #include <iostream> /*32位以内的循环左移*/ #…
-
实现SM4-ECB、CBC、CFB、OFB算法(大数据版)
base_sm4类参考: 实现SM4算法(16字节版) sm4.h #pragma once #include <algorithm> #include <ios…
-
C++ 第9课字符三角形
#include <iostream> #include <string> using namespace std; int main(int argc, …
-
C++ 第13课输出九九乘法表
#include <iostream> using namespace std; int main(int argc, char** argv) { int a = 1…
-
C++ 第40课转进制
#include <iostream> #include <string> using namespace std; int main() { /*stri…
-
1151:素数个数
编程求2-n中有多少个素数。 #include <iostream>using namespace std;int main(){ int n,s=0,sum=0…
-
# 关于C++20Concept(概念)及requires表达式的学习
关于C++20Concept(概念)及requires表达式的学习 Concept(概念) C++20 引入了 concept 以在编译期检查模板实参是否满足指定的约束. 如何不用…
-
C++各个版本新增对于算法竞赛有用特性
C++各个版本新增对于算法有用特性 C++11 auto与decltype类型推导(摘自程序喵大人) auto auto可以让编译器在编译器就推导出变量的类型,话不多说上代码: a…
-
c++ bind ref 例子
// bind example #include <iostream> // std::cout #include <functional> // std:…
-
统计分析 — 聚类算法模型
统计分析 — 聚类算法模型 距离分析 数据标准化 欧氏距离与量纲有关,因此,有时需要对数据进行预处理,如标准化等。在MATLAB中的命令是zscore,调用格式 Z =…