码迷,mamicode.com
首页 >  
搜索关键字:std    ( 41627个结果
Java基准性能测试--JMH使用介绍
JMH是什么 JMH是Java Microbenchmark Harness的简称,一个针对Java做基准测试的工具,是由开发JVM的那群人开发的。想准确的对一段代码做基准性能测试并不容易,因为JVM层面在编译期、运行时对代码做很多优化,但是当代码块处于整个系统中运行时这些优化并不一定会生效,从而产 ...
分类:编程语言   时间:2021-06-30 17:37:03    阅读次数:0
Rocksdb iterator和snapshot 接口
Rocksdb提供迭代器来来访问整个db中的数据,就像STL中的迭代器功能一样,用来访问容器中的具体的数据。 访问形式以及访问接口有如下几种: 遍历所有的key-value //打开db,并初始化一个迭代器指针 rocksdb::Iterator* it = db->NewIterator(rock ...
分类:数据库   时间:2021-06-30 17:34:44    阅读次数:0
Go的Socket(TCP服务客户端)
1.目录 2.service package main import ( "fmt" "net" ) func processConn(conn net.Conn) { for { //3.与客户端通信 var temp [128]byte n, err := conn.Read(temp[:]) ...
分类:其他好文   时间:2021-06-29 16:04:05    阅读次数:0
VB 多播委托
Dim DelegetSub1 As testDelegetSub = New testDelegetSub(AddressOf testDelegateSub2) Dim DelegetSub2 As testDelegetSub = New testDelegetSub(AddressOf te ...
分类:其他好文   时间:2021-06-28 21:10:35    阅读次数:0
华为机试题 成绩排名
简介 对cmp的理解能力 常规题 code #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; struct Student{ int idx; int n ...
分类:其他好文   时间:2021-06-28 21:01:31    阅读次数:0
【C++ Primer 第16章】重载与模板
编写重载模板 1 #include <iostream> 2 #include <sstream> 3 #include <string> 4 using namespace std; 5 6 template <typename T> 7 string debug_rep(const T &t) ...
分类:编程语言   时间:2021-06-28 20:25:45    阅读次数:0
纳米猫猫(欧拉函数)
#include <bits/stdc++.h> using namespace std; using ll = long long ; ll euler(ll n){ ll k=n; for(ll i=2;i*i<=n;i++) if(n%i==0){ k-=k/i; while(n%i==0)n ...
分类:其他好文   时间:2021-06-28 20:14:20    阅读次数:0
做题记录 Luogu P3371
Luogu P3371 【模板】单源最短路径(弱化版) 练习一下那个死了的算法(最近好多东西要用到啊:分数规划、差分约束...) #include<bits/stdc++.h> using namespace std; #define N 1000005 int first[N], Next[N], ...
分类:其他好文   时间:2021-06-28 19:54:03    阅读次数:0
做题记录 Luogu P5960
Luogu P5960 【模板】差分约束算法 差分约束模板题。 #include<bits/stdc++.h> using namespace std; #define N 1000005 int first[N], Next[N], to[N], w[N], tot; int dis[N], vi ...
分类:其他好文   时间:2021-06-28 19:53:48    阅读次数:0
做题记录 Luogu P4926
Luogu P4926 [1007]倍杀测量者 取对数化除为减。 或者用乘积最短路。 注意图不一定连通。 #include<bits/stdc++.h> using namespace std; #define N 1000005 const double eps = 1e-12; struct g ...
分类:其他好文   时间:2021-06-28 19:51:46    阅读次数:0
41627条   上一页 1 2 3 4 5 ... 4163 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!