在计算机性能调试领域里,profiling 是指对应用程序的画像,画像就是应用程序使用 CPU 和内存的情况。 Go性能优化 CPU profile:报告程序的 CPU 使用情况,按照一定频率去采集应用程序在 CPU 和寄存器上面的数据 Memory Profile(Heap Profile):报告 ...
分类:
其他好文 时间:
2021-06-06 18:58:59
阅读次数:
0
题目—吉祥物 (shiyancang.cn) 1 #include<bits/stdc++.h> 2 using namespace std; 3 int n,x; 4 int pos(int n) 5 { 6 int s=1,j=1; 7 while(s<n) 8 { 9 s+=j++; 10 } ...
分类:
其他好文 时间:
2021-06-06 18:58:39
阅读次数:
0
假设现有一组数据,我们需要画出他的累积分布函数图像 这里我们通过正态分布随机生成两组数据 data1=normrnd(0,5,[1,500]);data2=abs(normrnd(0,5,[1,500]));他们的分布分别为下图所示: 使用cdfplot函数就可以简单的画出他们的累积分布函数曲线 f ...
分类:
其他好文 时间:
2021-06-06 18:57:15
阅读次数:
0
.cls-1 { fill: #cccccc; } .cls-1:hover { fill: orange !important; } <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.7 11.15"> <defs> </defs> < ...
分类:
其他好文 时间:
2021-06-06 18:55:04
阅读次数:
0
0x01--新发地菜价 #!/usr/local/bin/python3.6 # -*- encoding=utf-8 -*- """ @coder: diygou @since: 2021/6/5下午6:33 """ import requests from bs4 import Beautifu ...
分类:
其他好文 时间:
2021-06-06 18:49:24
阅读次数:
0
Flink 1.12.1 java.lang.NoClassDefFoundError: org/apache/flink/streaming/api/functions/source/SourceFunction 错误信息描述 使用Idea运行项目,抛出以下异常 java.lang.NoClass ...
分类:
其他好文 时间:
2021-06-06 18:47:58
阅读次数:
0
阅读原文 一、下载windows版本的Redis 官网下载地址:http://redis.io/download github下载地址:https://github.com/MSOpenTech/redis/tags 二、安装Redis 1.这里下载的是Redis-x64-3.2.100版本,我的电 ...
E题 调皮的摩尔 原题链接 算法: 字符串哈希 将一个字符串转化为整数存储,同时保证字符串不同,产生的数字不同。 注意点: 1. unsigned long long unsigned long long (\(2^{64} - 1\)), 溢出自动取模 2. 哈希值的计算方法 已知字符串$S$, ...
分类:
其他好文 时间:
2021-06-05 18:37:49
阅读次数:
0