/* * [Modified] Modern CSS Reset * @link https://github.com/hankchizljaw/modern-css-reset */ /* Box sizing rules */ *, *::before, *::after { box-sizin ...
分类:
Web程序 时间:
2020-06-03 15:14:21
阅读次数:
166
左边大顶堆,右边小顶堆。右边数量比左边多一,左边放小的那半数,右边放大的那半 是偶数个,那就返回两个根堆的头结点的q平均值,如果是奇数,就是小根堆的数量大于大根堆数量1个,返回小根堆的头; 当左右平等数量的时候,往小根堆了加入,当小根堆大于大根堆时候,往大根堆里加入 1 priority_queue ...
分类:
其他好文 时间:
2020-05-30 21:36:43
阅读次数:
83
adb命令:官方参考网址:https://developer.android.google.cn/studio/command-line/adb?hl=zh-cn#-t-option 1、adb shell dumpsys meminfo 包名.apk ——查看指定包名应用内存使用情况 adb sh ...
分类:
数据库 时间:
2020-05-30 15:40:22
阅读次数:
104
未添加 EventBus的混淆,所以在Debug版本中不报错在混淆文件“proguard-rules.pro”中添加: 1 ### eventbus 2 -keepattributes *Annotation* 3 -keepclassmembers class ** { 4 @org.greenr ...
分类:
其他好文 时间:
2020-05-29 12:13:10
阅读次数:
211
前端代码我使用jquery.validate.js,地图代码如下: <script type="text/javascrip"> $(document).ready(function() { $("#smForm").validate({ rules: { smMobilePhone: { requ ...
分类:
移动开发 时间:
2020-05-28 23:10:00
阅读次数:
367
export default { data() { return { form: { code: "", name: "", enable: true }, rules: { code: [ { required: true, validator: (rule, value, callback) = ...
分类:
其他好文 时间:
2020-05-28 16:15:13
阅读次数:
218
[root@kunpeng82 delay_monitor_sdn]# ovs-ofctl -O OpenFlow13 dump-flows s1 cookie=0x0, duration=491.321s, table=0, n_packets=2, n_bytes=196, priority=1 ...
分类:
其他好文 时间:
2020-05-27 18:23:00
阅读次数:
68
// 封装优先级队列 function PriorityQueue() { function QueueElement(element, priority) { this.element = element this.priority = priority } // 封装属性 this.items ...
分类:
其他好文 时间:
2020-05-26 01:19:35
阅读次数:
64
要求构造一棵treap,其结点的(key,priority)要求为(x,sinx),且这棵treap的高度是n,所有x都为整数 根据treap的特性,将问题转化为构造一个pair<x,sinx>序列,要求x递增,sinx也递增 当sinx很小时,sinx=x,即接近线性,那么我们找到一个能满足sin ...
分类:
其他好文 时间:
2020-05-25 19:46:32
阅读次数:
69
顶部注释告诉我们的信息 + 一个无界的队列 + 基于优先级堆(Java中的PQ相当于最小堆) + priority queue中的元素的顺序基于Comparable原始的顺序或者由构造时提供的Comparator提供 + priority queue中不能有null元素,有null元素还怎么比大小。 ...
分类:
其他好文 时间:
2020-05-23 20:24:28
阅读次数:
55