一. 什么是UUID: UUID: 通用唯一标识符 ( Universally Unique Identifier ), 对于所有的UUID它可以保证在空间和时间上的唯一性. 它是通过MAC地址, 时间戳, 命名空间, 随机数, 伪随机数来保证生成ID的唯一性, 有着固定的大小( 128 bit ) ...
分类:
编程语言 时间:
2019-07-19 20:56:35
阅读次数:
118
太短小在这里备份 1. time.Time to string format string : "2006-01-02 15:04:05.999999999 -0700 MST" 2. time format string to int 3. yyyy-mm-dd string to yyyymmd ...
分类:
其他好文 时间:
2019-07-17 10:51:49
阅读次数:
249
转自:https://www.2cto.com/database/201211/172340.html ORA-00001:unique constraint violated解决 今天往数据库中插入数据时报错: www.2cto.com ORA-00001: unique constraint ( ...
分类:
其他好文 时间:
2019-07-16 16:33:36
阅读次数:
145
Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which gives the s ...
分类:
其他好文 时间:
2019-07-16 08:24:40
阅读次数:
100
package y2019.Algorithm.array.medium; /** * @ClassName UniquePathsWithObstacles * @Description TODO 63. Unique Paths II * * A robot is located at the ... ...
分类:
编程语言 时间:
2019-07-16 00:13:24
阅读次数:
527
"题面" 解析 我们先考虑一下加一条边(x,y,z)会成什么亚子: (还有很多边不画了...) 然后我们把这个图单独拿出来: 我们可以发现,对于最小生成树的贡献, 它是等价于下面这张图的(因为连通性一样): 而同理,最前面的图也可以变成: 所以,我们只需要连三条边$(x,y,z),(x,x+1,z+ ...
分类:
其他好文 时间:
2019-07-14 18:05:25
阅读次数:
103
题意:给定N点M边的无向连通图,每条边有两个权值(g,s)。 给定G,S。 让你给出一组(g0,s0)使得图中仅留下g<=g0, s<=s0的边之后,依然连通,并求Gg0+Ss0的最小值。 n<=200,m<=50000。 思路:枚举g0,求最小的s0,满足生成MST。 把边按g排序,一条边一条边的 ...
分类:
其他好文 时间:
2019-07-14 17:48:24
阅读次数:
92
问题描述 We have a graph with N vertices, numbered 0 through N ?1. Edges are yet to be added. We will process Q queries to add edges. In the i th (1≦ i ≦ ...
分类:
其他好文 时间:
2019-07-14 14:49:03
阅读次数:
91
题目描述: 方法一: 方法二:动态规划 O(m*n) O(m*n) 另:空间:O(n) ...
分类:
其他好文 时间:
2019-07-12 18:40:38
阅读次数:
98
1.通过Url获取到Image格式的文件 public static Image UrlToImage(string url) { WebClient mywebclient = new WebClient(); byte[] Bytes = mywebclient.DownloadData(url ...