1 .table{ 2 font-size: 12px; 3 border-collapse: collapse; 4 border-top: 1px solid #7f9db9; 5 border-left: 1px solid #7f9db9; 6 } 7 .table td, .table t ...
分类:
其他好文 时间:
2020-03-14 11:19:28
阅读次数:
83
1、安装systemtap其实主要就是安装内核探测工具 systemtap。(SystemTap 通过将脚本语句翻译成C语句,编译成内核模块。模块加载之后,依据时间处理机制来收集有关正在运行的Linux系统的信息) #yum install yum-utils#yum install kernel- ...
分类:
其他好文 时间:
2020-03-12 12:58:59
阅读次数:
88
可以ping通,但是无法ssh连接 service iptables stop service sshd startsudo ufw statussudo ufw disablesudo ufw allow 22 ssh时permission denied, please try again 找到/ ...
分类:
其他好文 时间:
2020-03-10 22:09:00
阅读次数:
88
题意: 有一个概率Q,Q的初始值为1,一个界限P,以及N件物品,每件物品都有自身的价值vi,以及一个概率下降比率pi(表示选取这件物品会导致Q变为 Q*(1-pi))。 问在Q大于P的条件下,最大的收益值。 核心思想:01背包的思想,选取正确的 量 作为背包容量。 题解思路: 如果以概率作为‘背包容 ...
分类:
其他好文 时间:
2020-03-09 22:35:44
阅读次数:
64
恢复内容开始 1、暴力法 1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *next; 6 * ListNode(int x) : val(x), next(NU ...
分类:
其他好文 时间:
2020-03-09 17:40:42
阅读次数:
64
出处: 理解I/O:随机和顺序 随机 I/O & 顺序 I/O 先看一篇译文介绍 随机I/O 顺序I/O Storage for DBAs: Ever been to one of those sushi restaurants where the food comes round in dishe ...
分类:
其他好文 时间:
2020-03-09 13:08:29
阅读次数:
98
题目: 思路: 由题得知输入得正整数位数很大,故超出C++整型的范围,于是使用字符串数组进行存储。另外使用一个数组对输入数字的个位数字进行统计,然后进行输出 注意点: 字符串数组中,每个位置存储的元素的类型为char类型,故利用ASCLL码获取其在C++中的整型数字,res[num[i]-'0']+ ...
分类:
其他好文 时间:
2020-03-08 21:58:34
阅读次数:
86
说明: excel连接数据库,然后python控制excel刷新。 代码展示 import os import time from win32com.client import Dispatch def refreash(path_file): os.system('taskkill /IM EXC ...
分类:
编程语言 时间:
2020-03-07 20:49:00
阅读次数:
207
企业微信上线了侧边栏功能,对提高服务效率有很高的帮助。api文档查看:https://open.work.weixin.qq.com/api/doc/90000/90136/91789 配置后大概是这个样子,单个客户会有一个“客户资料”,群聊没有这块。不过“快捷回复”是一个比较常用的功能。但是很多时 ...
分类:
微信 时间:
2020-03-06 20:19:46
阅读次数:
147
https://www.luogu.com.cn/problem/P1247 #include <bits/stdc++.h> using namespace std; #define int long long const int maxn = 5e5 + 5; int n; int a[maxn ...
分类:
其他好文 时间:
2020-03-06 13:12:20
阅读次数:
59