码迷,mamicode.com
首页 >  
搜索关键字:cannot find the requ    ( 29133个结果
最小生成树
最小生成树 前言 emmm...因为Prim学的不是很好(完全不会编题),所以重点讲Kruskal算法,Prim部分可能会咕很久(炖鸽子警告) 最小生成树 知识搬运 给定一张边带权的无向图 \(G=(V,E),n=|V|,m=|E|\) ,由V中全部n个顶点和E中的 \(n-1\) 条边构成的无向连 ...
分类:其他好文   时间:2020-06-26 16:21:41    阅读次数:68
linux 系统 如何 安装 python (python 3.8)
1、查看当前python pythonquit() whereis python which python 2、进入python官网,下载最新安装包 :https://www.python.org/ wget https://www.python.org/ftp/python/3.8.3/Pytho ...
分类:编程语言   时间:2020-06-26 14:36:04    阅读次数:94
719. 找出第 k 小的距离对
719. 找出第 k 小的距离对 思路: 首先采用了暴力求差值,11组数据超时,优化后利用map来求,结果在最后的两组超时。。然而还是要用二分写,二分差值,最小的为0,最大的是排完序后最后一个数的值减去第一个数的值,取mid,然后在原来数组里继续二分找有多少对差值cnt是小于等于mid的。 若对数c ...
分类:其他好文   时间:2020-06-26 14:32:06    阅读次数:54
xtrabackup: Redo Log Archiving is not set up
xtrabackup 备份 MySQL 8.0.20 时报错: 200626 08:40:59 Connecting to MySQL server host: localhost, user: root, password: set, port: 3306, socket: /data/mysql ...
分类:其他好文   时间:2020-06-26 12:40:56    阅读次数:88
0223. Rectangle Area (M)
Rectangle Area (M) 题目 Find the total area covered by two rectilinear rectangles in a 2D plane. Each rectangle is defined by its bottom left corner and ...
分类:其他好文   时间:2020-06-26 11:14:20    阅读次数:61
[LeetCode] 1060. Missing Element in Sorted Array
Given a sorted array A of unique numbers, find the K-th missing number starting from the leftmost number of the array. Example 1: Input: A = [4,7,9,10 ...
分类:其他好文   时间:2020-06-26 10:52:26    阅读次数:72
TypeScript(20): 声明文件
TypeScript 作为 JavaScript 的超集,在开发过程中不可避免要引用其他第三方的 JavaScript 的库。虽然通过直接引用可以调用库的类和方法,但是却无法使用TypeScript 诸如类型检查等特性功能。为了解决这个问题,需要将这些库里的函数和方法体去掉后只保留导出类型声明,而产... ...
分类:其他好文   时间:2020-06-26 10:27:35    阅读次数:56
Stream中的Pipeline理解
使用Stream已经快3年了,但是从未真正深入研究过Stream的底层实现。 今天开始把最近学到的Stream原理记录一下。 本篇文章简单描述一下自己对pipeline的理解。 基于下面一段代码: public static void main(String[] args) { List<Strin ...
分类:其他好文   时间:2020-06-26 01:36:40    阅读次数:99
0030. Substring with Concatenation of All Words (H)
Substring with Concatenation of All Words (H) 题目 You are given a string, s, and a list of words, words, that are all of the same length. Find all star ...
分类:其他好文   时间:2020-06-25 21:20:39    阅读次数:56
[Devops]CI VS Build时出现Unable to find version 'x.x.x' of package 'xxx'.
详细详情:一直正常运行的CICD突然某一天出现错误,如标题所示。-牵扯到所有CICD,不仅影响一个。 排查流程: 1. 尝试在项目Nuget.config中增加v2版本如下:(无效) <?xml version="1.0" encoding="UTF-8"?><configuration> <pac ...
分类:其他好文   时间:2020-06-25 19:50:52    阅读次数:56
29133条   上一页 1 ... 77 78 79 80 81 ... 2914 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!