#853 车队 https://leetcode-cn.com/problems/car-fleet/ 这题我并没有使用某个排序算法,只是使用了Vector的可自定义sort方法。 class Solution { public: struct Car { int pos; int speed; f ...
分类:
编程语言 时间:
2020-06-08 12:46:31
阅读次数:
48
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv ...
分类:
Web程序 时间:
2020-06-05 13:31:19
阅读次数:
102
#include<bits/stdc++.h>#define ll long long#define speed_up ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);using namespace std;const ll nl=1e18;/* ...
分类:
其他好文 时间:
2020-06-04 19:38:52
阅读次数:
55
1、安装webp 下载地址:https://developers.google.com/speed/webp/download 官网 https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.0. ...
分类:
Web程序 时间:
2020-06-04 01:45:37
阅读次数:
101
64位系统 1.4.4版本:http://static.runoob.com/download/memcached-win64-1.4.4-14.zip 64位系统 1.4.5版本:http://static.runoob.com/download/memcached-1.4.5-amd64.zip ...
class Vehicle(object): trans_type = 'SUV' def __init__(self, size, speed): self.size = size self.__speed = speed def show_info(self): print("我所属的类型为:{ ...
分类:
编程语言 时间:
2020-05-27 18:47:00
阅读次数:
83
有些时候需要用到PDF文档中的部分文字内容,可能会遇到文字无法直接复制的问题,那么是什么原因导致文字无法复制呢?要怎么处理才能正常复制呢?下面一起来看看具体的原因和解决方案吧。 一、文字可以选中但复制失败 如下图所示选中文字后选择复制却提示复制文本失败,只能复制为图片,这种情况一般是因为文档被加密, ...
分类:
其他好文 时间:
2020-05-25 19:46:17
阅读次数:
91
imagePullPolicy Always 总是拉取 pull imagePullPolicy: Always IfNotPresent 默认值,本地有则使用本地镜像,不拉取 imagePullPolicy: IfNotPresent Never 只使用本地镜像,从不拉取 imagePullPol ...
分类:
其他好文 时间:
2020-05-25 15:27:21
阅读次数:
152
tensorflow-yolov4实施方法 tensorflow-yolov4-tflite YOLOv4: Optimal Speed and Accuracy of Object Detection 文献链接:https://arxiv.org/abs/2004.10934 代码链接:https ...
分类:
其他好文 时间:
2020-05-23 09:19:31
阅读次数:
576
1.显示与隐藏 show([speed,easing,function]) speed:毫秒单位的时间值 hide([speed,easing,function]) 用法:元素.show()/元素.hide() 2.代码如下 显示隐藏 显示 隐藏 文字 ...
分类:
Web程序 时间:
2020-05-21 21:18:35
阅读次数:
67