安装expect yum install -y expect expect常用命令总结: spawn 交互程序开始后面跟命令或者指定程序 expect 获取匹配信息匹配成功则执行expect后面的程序动作 send exp_send 用于发送指定的字符串信息 exp_continue 在expect ...
分类:
其他好文 时间:
2020-06-16 15:40:06
阅读次数:
66
1035 插入与归并 (25分) 数据比较小,归并不用写合并函数,直接sort 中间序列不包括初始序列 #include<iostream> #include<vector> #include<cctype> #include<map> #include<set> #include<sstream> ...
分类:
编程语言 时间:
2020-06-15 10:10:59
阅读次数:
53
type node struct { data int lchild *node rchild *node } func newNode(data int) *node { return &node{data: data} } type binaryTree struct { root *node ...
分类:
其他好文 时间:
2020-06-14 18:37:05
阅读次数:
50
题目:宏#define命令练习3。 程序分析:无。 实例: 1 #define LAG > 2 #define SMA < 3 #define EQ == 4 #include <stdio.h> 5 int main() 6 { 7 int i,j; 8 printf("请输入两个数字:\n"); ...
分类:
其他好文 时间:
2020-06-14 01:01:37
阅读次数:
57
在工作中我们常会用到wireshark抓取数据包进行分析,当使用wireshark默认设置时,会捕获到大量冗余的数据包,如果没有过滤器过滤,我们很难找到自己想要抓取的数据,这个时候就需要用到wireshark的过滤器来过滤,它们可以帮助我们在庞杂的结果中迅速找到我们需要的信息。 wireshark提 ...
分类:
其他好文 时间:
2020-06-13 11:06:06
阅读次数:
87
主要问题是每个石柱能站的次数有限,那石柱就对应一条边,走 \(a\) 次对应流量为 \(a\) #include<bits/stdc++.h> using namespace std; #define rg register inline int read(){ rg char ch=getchar ...
分类:
其他好文 时间:
2020-06-12 20:08:18
阅读次数:
57
有时候RecyclerView将无法触发Coordinatorlayout的抽屉效果 为什么呢 原因 ① 有可能RecyclerView 的item类目过少,RecyclerView本身不需要滑动 解决办法:RecyclerView可以手工设置 marginBottom 一个长度如200dp,这样可 ...
分类:
其他好文 时间:
2020-06-12 12:40:22
阅读次数:
93
下载文件,用010editor打开发现是png文件,改后缀之后打开 用stegsolve打开,并无lsb隐写,photoshop查看,也没有隐藏图层,丢到binwalk里看一下有没有隐藏文件 果然有,使用-e命令分离 打开之后是一堆01,首先想到二维码,一共841个,正好29的平方,在网上找一个转换 ...
分类:
其他好文 时间:
2020-06-11 13:45:14
阅读次数:
116
官方文档 动态下拉组件 https://doc.fastadmin.net/doc/178.html 首先生成控制器和菜单看下fa_test的多选效果 多选效果如下 使用多选的两种方式(chekbox是最简单的,那中多选就不算了) 1.input里使用多选(官网中,以分类id的多选为例,因为ui的逼 ...
分类:
其他好文 时间:
2020-06-09 09:57:33
阅读次数:
276
#46 全排列 https://leetcode-cn.com/problems/permutations/submissions/ 给定一个 没有重复 数字的序列,返回其所有可能的全排列。 class Solution { public: vector<vector<int>> result; v ...
分类:
其他好文 时间:
2020-06-08 13:05:47
阅读次数:
64