码迷,mamicode.com
首页 >  
搜索关键字:using temporary    ( 54256个结果
MySQL5.7 二进制安装
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
例1-4 p39
#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的版本
进入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
【C++】虚函数和纯虚函数
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
哈希.字符串哈希.AcWing.841
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, ...
分类:Windows程序   时间:2021-01-01 11:54:31    阅读次数:0
acwing 868. 筛质数
线性筛 #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+ ...
分类:Windows程序   时间:2021-01-01 11:39:00    阅读次数:0
浮点数陷阱
对于程序 #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
condition
#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
[Tools] Using Webpack require.context to conditionally load file
require.context: https://webpack.js.org/guides/dependency-management/#requirecontext require.context(directory, useSubdirectories = true, regExp = /^\ ...
分类:Web程序   时间:2020-12-31 12:11:57    阅读次数:0
acwing 291. 蒙德里安的梦想
求把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> ...
分类:Windows程序   时间:2020-12-31 11:56:31    阅读次数:0
54256条   上一页 1 ... 54 55 56 57 58 ... 5426 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!