Description Description Given a 2D binary matrix filled with 0's and 1's, find the largest square which diagonal is all 1 and others is 0. Only consid ...
分类:
其他好文 时间:
2019-12-21 22:24:34
阅读次数:
67
一、动态连通性(Dynamic Connectivity) Union-Find 算法(中文称并查集算法)是解决动态连通性(Dynamic Conectivity)问题的一种算法。动态连通性是计算机图论中的一种数据结构,动态维护图结构中相连信息。简单的说就是,图中各个节点之间是否相连、如何将两个节点 ...
分类:
编程语言 时间:
2019-12-21 20:28:20
阅读次数:
95
Given a n,m which means the row and column of the 2D matrix and an array of pair A( size k). Originally, the 2D matrix is all 0 which means there is o ...
分类:
其他好文 时间:
2019-12-21 12:05:17
阅读次数:
82
Given a matrix of lower alphabets and a dictionary. Find all words in the dictionary that can be found in the matrix. A word can start from any positi ...
分类:
其他好文 时间:
2019-12-21 11:45:03
阅读次数:
100
AVL树 前中后遍历 树的遍历深度和广度 树是一种特殊的图 人脉关系属于图数据结构; 并查集 最小生成树 union find 正常图的遍历用广度也能做,但是速度低; 并查集可以降到logn 数据小的话,可以用一个二维数组 认识就是1,不认识就是0 然后用递归的方式,做一个深度遍历 动态规划 NP问 ...
分类:
其他好文 时间:
2019-12-20 22:26:23
阅读次数:
117
帮助命令 1. docker version 2.docker info 3.docker --help **** 镜像命令 docker images #列出本地主机上的镜像 -a 代表all 所有含中间镜像层 -q 只显示镜像id --digests 显示摘要信息 --no-trunc 显示完整 ...
分类:
其他好文 时间:
2019-12-20 18:31:43
阅读次数:
62
递归是所有编程语言中,都会讨论到的一个问题。 递归的通俗认识 编程是现实的抽象,这是能被应用到所有的编程概念的。 递归也是如此,其实递归,就是重复,循环, 我们大概上幼儿园的时候,其实就有过递归的概念。 ...
分类:
其他好文 时间:
2019-12-20 18:23:08
阅读次数:
95
引入kindeditor-all.js和lang/zh-CN.js ...
分类:
Web程序 时间:
2019-12-20 18:09:07
阅读次数:
129
SQL UNION 操作符 SQL UNION 操作符合并两个或多个 SELECT 语句的结果。 SQL UNION 操作符 UNION 操作符用于合并两个或多个 SELECT 语句的结果集。 请注意,UNION 内部的每个 SELECT 语句必须拥有相同数量的列。列也必须拥有相似的数据类型。同时,... ...
分类:
其他好文 时间:
2019-12-20 09:13:52
阅读次数:
108
This application respects and protects the privacy of all users who use the service. In order to provide you with more accurate and personalized servi... ...
分类:
移动开发 时间:
2019-12-19 22:57:06
阅读次数:
132