P3378 【模板】堆 #include<bits/stdc++.h> using namespace std; priority_queue<int,vector<int>,greater<int> >q;//小根堆 int n; int op; int x; int main(){ scanf( ...
分类:
其他好文 时间:
2020-06-29 18:42:21
阅读次数:
76
Form表单中的参数 :model 绑定的是表单的数据对象 :rules 是表单的验证规则对象 ref 是当前表单组件的引用对象 el-from-item 的 prop属性: 专门用来指定校验规则 所有的校验规则都在:rules 所绑定的对象中定义 Form 方法 重置/清空 的方法 resetFo ...
分类:
其他好文 时间:
2020-06-28 22:36:03
阅读次数:
99
#走进堆 堆分为大根堆和小根堆,大根堆堆顶元素最大,越往下元素越小,小根堆相反,堆顶元素最小,越往下元素越大 ##1.定义 手写堆是什么,表示从来没用过,要写堆当然要用我STL的优先队列啦 priority_queue<int> q;//默认的优先队列是大根堆 priority_queue<int, ...
分类:
其他好文 时间:
2020-06-27 20:28:22
阅读次数:
80
介绍 treap是tree和heap的组合词,说明这种数据结构有树的特点又有堆的特点。本质是一颗二叉搜索树。 treap的结点除了key关键字外还有个priority关键字。treap除了要保证key满足二叉搜索树性质,还要保证当前priority大于等于两个子节点的priority(即堆的性质)。 ...
分类:
其他好文 时间:
2020-06-27 13:10:38
阅读次数:
52
©著作权归作者所有:来自51CTO博客作者大飞侠大虾的原创作品 mark一下 性能相关配置 worker_processes number | auto; worker进程的数量;通常应该为当前主机的cpu的物理核心数 worker_cpu_affinity auto [cpumask] #将wor ...
分类:
其他好文 时间:
2020-06-27 11:58:47
阅读次数:
96
7816时序 7816时一个比较早的老通讯时序了,最近项目上需要用UART模拟所以,简单学习时序。 时序比较简单,熟悉UART的一眼看着就像是串口的时序,只是他没有停止位,取而代之的就是保护时间guradtime,一般是两个etu所以可以使用两个停止位来模拟。电路图上就是将RX和TX短接,在发送关闭 ...
分类:
其他好文 时间:
2020-06-26 20:38:31
阅读次数:
93
[root@server1 ~]# service network restart 关闭环回接口: [确定] 弹出环回接口: [确定] 弹出界面 eth0: 设备 eth0 似乎不存在, 初始化操作将被延迟。 [失败] 清空70-persistent-net.rules,重启系统,让系统自己重新生成 ...
分类:
系统相关 时间:
2020-06-26 12:34:25
阅读次数:
182
Sudoku Solver (H) 题目 Write a program to solve a Sudoku puzzle by filling the empty cells. A sudoku solution must satisfy all of the following rules: E ...
分类:
其他好文 时间:
2020-06-26 11:02:48
阅读次数:
41
iview的表单校验问题1、简单校验 (1)给外层的Form 设置属性 :model='formDataInfo';属性 :rules :'ruleValidate'; 属性ref='formValidate' (2)在需要校验的 FormItem 设置属性 prop 指向对应字段。需要注意的是:F ...
分类:
其他好文 时间:
2020-06-25 12:15:32
阅读次数:
55
插件 sup A Flutter widget which displays an image, a title, and a subtitle for errors, empty states, or just fancy custom messages. pub-rules simple yet ...
分类:
其他好文 时间:
2020-06-24 19:35:59
阅读次数:
105