MySQL5.7 二进制安装教程 ①安装环境准备: Centos8 配置1核2G MySQL 版本:mysql-5.7.32-linux-glibc2.12-x86_64.tar.gz ②安装步骤 1:解压mysql压缩包到指定目录 tar zxvf mysql-5.7.32-linux-glibc ...
分类:
数据库 时间:
2021-01-01 12:53:24
阅读次数:
0
#include<iostream>using namespace std;int main(){ int oneInt =1; int & ref=oneInt; const int &refc=oneInt; ref=2; cout<<"oneInt="<<oneInt<<","<<"ref=" ...
分类:
其他好文 时间:
2021-01-01 12:35:39
阅读次数:
0
进入tomcat/bin目录下,执行version.sh sh version.sh Using CATALINA_BASE: /home/test/tomcatUsing CATALINA_HOME: /home/test/tomcatUsing CATALINA_TMPDIR: /home/te ...
分类:
其他好文 时间:
2021-01-01 12:31:22
阅读次数:
0
https://zhuanlan.zhihu.com/p/37331092 虚函数和纯虚函数 https://blog.csdn.net/u012206617/article/details/87697667 虚函数和纯虚函数 https://www.cnblogs.com/chwei2ch/p/1 ...
分类:
编程语言 时间:
2021-01-01 12:11:47
阅读次数:
0
code: #include<bits/stdc++.h>//xfl using namespace std; const int N = 100007; typedef unsigned long long ull; ull mis[N],sum[N]; string s; int n,m,l1, ...
线性筛 #include<bits/stdc++.h> #define N 1000010 using namespace std; int v[N],p[N]; void pr(int n) { memset(v,0,sizeof(v)); int m=0; for(int i=2;i<=n;i+ ...
对于程序 #include<iostream> using namespace std; int main() { double i; for(i=0; i!=10; i+=0.1){ printf("%.lf\n", i); // printf("%.16lf\n", i); } return 0 ...
分类:
其他好文 时间:
2020-12-31 12:21:10
阅读次数:
0
#include <deque> #include <thread> #include <mutex> #include <condition_variable> using namespace std; deque<int> queue; mutex mtx; condition_variable ...
分类:
其他好文 时间:
2020-12-31 12:12:20
阅读次数:
0
require.context: https://webpack.js.org/guides/dependency-management/#requirecontext require.context(directory, useSubdirectories = true, regExp = /^\ ...
分类:
Web程序 时间:
2020-12-31 12:11:57
阅读次数:
0
求把N*M的棋盘分割成若干个1*2的的长方形,有多少种方案。 j表示 n 位二进制数 1 表示有“突出” f[i][j]表示当前状态 f[i-1][k]是上一行的状态 if ((j&k)==0&&st[j|k]) f[i][j]+=f[i-1][k]; #include<bits/stdc++.h> ...