#include<bits/stdc++.h> using namespace std; struct BigInteger { static const int BASE=10000; static const int WIDTH=4; vector<long long>s; BigInteger ...
分类:
其他好文 时间:
2020-05-31 15:45:43
阅读次数:
54
https://www.cnblogs.com/niudaben/p/12503650.html 使用Git pull文件时,出现"error: RPC failed; curl 18 transfer closed with outstanding read data remaining" err ...
分类:
Web程序 时间:
2020-05-31 01:02:44
阅读次数:
126
package com.thread.sync; class common {//同步资源池 private char ch; //****资源池公用资源*** private boolean available=false;//默认等待生产数据 synchronized char get(){// ...
分类:
编程语言 时间:
2020-05-30 21:50:24
阅读次数:
78
通常线程是:有一个请求然后会创建对应的线程;执行完之后再回收。等待下次请求。 这样不断的创建线程再销毁线程是一种资源浪费,而且也不能无限制的创建线程。所以我们要学会复用线程(线程池)。 Java提供的线程池: ExecutorService 通过实现这个接口可以达到线程池的管理。 runnable ...
分类:
编程语言 时间:
2020-05-30 19:39:59
阅读次数:
63
#include<bits/stdc++.h> using namespace std; const int N=4e5+10; typedef long long ll; int n,m,r,p; int id[N],w[N],pre[N],top[N],h[N],e[N],ne[N],idx,t ...
分类:
其他好文 时间:
2020-05-27 15:53:01
阅读次数:
51
原题点这里 求一个数的幂。我们看一下数据范围。很容易就想到Math.pow() public static double myPow(double x, int n) { return Math.pow(x,n); } View Code 哈哈,其实这样有投机的成分。正经的解法:快速幂 我们以 x^ ...
分类:
其他好文 时间:
2020-05-27 10:37:59
阅读次数:
78
题目链接 开颜色种类个二维树状数组,维护前缀和,单点修改、子矩阵查询。 注意读入的顺序,是$x_1\; x_2\; y_1\; y_2$而不是$x_1\; y_1\; x_2\; y_2$。 代码(100分): #include<iostream> #include<cstdio> #include ...
分类:
Web程序 时间:
2020-05-25 09:32:51
阅读次数:
75
torchvision.model model子包中包含了用于处理不同任务的经典模型的定义,包括:图像分类、像素级语义分割、对象检测、实例分割、人员关键点检测和视频分类。 图像分类: 语义分割: 对象检测、实例分割和人员关键点检测: 视频分类: ResNet 3D ResNet Mixed Conv ...
分类:
其他好文 时间:
2020-05-24 19:23:48
阅读次数:
114
Given two lists of closed intervals, each list of intervals is pairwise disjoint and in sorted order. Return the intersection of these two interval li ...
分类:
其他好文 时间:
2020-05-24 09:40:12
阅读次数:
58
@[Toc] Spring MVC 默认采用Jackson解析Json,尽管还有一些其它同样优秀的json解析工具,例如Fast Json、GSON,但是出于最小依赖的考虑,也许Json解析第一选择就应该是Jackson。 一、简介 Jackson 是当前用的比较广泛的,用来序列化和反序列化 jso ...
分类:
其他好文 时间:
2020-05-24 00:26:50
阅读次数:
91