题目链接 题意: 给定一个容器,该容器支持的操作有三种: 1、加入一个元素 2、删除一个元素 3、查询 k th 比 a 大的数 思路: 元素的值在1e5之内,可以直接用树状数组记录出现的次数 查询的时候用二分查找第k大的数。 ...
分类:
编程语言 时间:
2018-08-10 14:30:31
阅读次数:
194
基于vue cli+webpack的demo 项目结构 axios文件夹用来创建axios相关配置: mock文件夹建立mock数据,配置mock请求: NewsCell.vue组件渲染数据: main.js入口文件: // The Vue build version to load with th ...
分类:
Web程序 时间:
2018-08-10 13:15:47
阅读次数:
265
Python 的 asyncio 类似于 C++ 的 Boost.Asio。 所谓「异步 IO」,就是你发起一个 IO 操作,却不用等它结束,你可以继续做其他事情,当它结束时,你会得到通知。 Asyncio 是并发(concurrency)的一种方式。对 Python 来说,并发还可以通过线程(th ...
分类:
编程语言 时间:
2018-08-10 10:54:10
阅读次数:
187
A - Multiple of 2 and N Time Limit: 2 sec / Memory Limit: 1024 MB Score : 100100 points Problem Statement You are given a positive integer NN. Find th ...
分类:
其他好文 时间:
2018-08-10 01:19:00
阅读次数:
168
1,磁盘使用警告并发送邮件 #!usr/bin/bash #df -Th|grep '/$' 这个是获取内存使用的那一条记录 #后面两句是获取内存的使用率 disk=`df -Th|grep '/$' |awk '{print $(NF-1)}'|awk -F"%" '{print $1}'` ma ...
分类:
系统相关 时间:
2018-08-10 01:15:35
阅读次数:
480
Python全栈之路 前言:因为Python主要是在Linux和widows操作系统上使用所以,首先就介绍Pyhton在这两个平台上的安装和一些基础知识 Linux系统下安装Pyhton 1.工具 虚拟机:VMware workstation 12 Pro Linux系统:CentOS 64 位 V ...
分类:
编程语言 时间:
2018-08-09 23:15:35
阅读次数:
213
<table id="" class="table table-striped table-advance table-hover"> <thead> <tr> <th></th> <th></th> </tr> </thead> <tbody> </tbody> </table> ...
分类:
其他好文 时间:
2018-08-09 17:24:14
阅读次数:
105
Problem Description The ALPC company is now working on his own network system, which is connecting all N ALPC department. To economize on spending, th ...
分类:
Web程序 时间:
2018-08-09 13:57:34
阅读次数:
216
.dataframe tbody tr th:only of type { vertical align: middle; } .dataframe tbody tr th { vertical align: top; } .dataframe thead th { text align: righ ...
分类:
其他好文 时间:
2018-08-09 00:33:18
阅读次数:
927
<table>标签定义html中表格。 简单的html表格是有一个或者多个<table>标签由<th>、<tr>或<td>元素组成。 <tr>元素定义表格行,<td>元素定义表格列,<th>元素定义表头。 图例显示 : 。 table元素可选用的标签有 border表格边框的宽度、cellsppin ...
分类:
Web程序 时间:
2018-08-09 00:32:05
阅读次数:
163