码迷,mamicode.com
首页 >  
搜索关键字:using 127.0.0.1 for servername    ( 53996个结果
从快速幂运算到矩阵快速幂
快速幂运算 HDU2035 求 http://acm.hdu.edu.cn/showproblem.php?pid=2035 题目是很简单的,因为b也不大所以时间复杂度为n的算法也能ac #include <iostream> using namespace std; int a, b; int p ...
分类:其他好文   时间:2021-01-01 12:58:37    阅读次数:0
rust 迭代器
https://blog.csdn.net/guiqulaxi920/article/details/78823541 fn main() { // Basic Range (exclusive on the right) for i in 1..11 { print!("{} ", i); } p ...
分类:其他好文   时间:2021-01-01 12:55:18    阅读次数:0
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
53996条   上一页 1 ... 53 54 55 56 57 ... 5400 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!