参考链接:https://www.cnblogs.com/muahao/p/7610413.htmlCentOS 7.6 从内核 3.10.0 升级到 5.3.6后,重启不了,原因是 Linux 内核 4.4.x 版本之后,dracut 命令生成的 initramfs 默认不会自动加载 mpt3sa ...
分类:
其他好文 时间:
2019-11-13 00:51:05
阅读次数:
497
In a 2 dimensional array grid, each value grid[i][j] represents the height of a building located there. We are allowed to increase the height of any n ...
分类:
其他好文 时间:
2019-09-07 22:16:39
阅读次数:
103
Description: In a 2 dimensional array grid, each value grid[i][j] represents the height of a building located there. We are allowed to increase the he ...
分类:
其他好文 时间:
2019-08-06 12:26:19
阅读次数:
128
经典line sweep问题,和 perfect rectangle 很类似,但是要考虑多个矩形左边界一样的情况,加个id来区分。 和另一道类似的题 the skyline problem 不同的是,没有很多 corner cases,对 x 排序非常简单。 难点是在 active set 里,和 ...
分类:
其他好文 时间:
2019-07-26 14:40:02
阅读次数:
78
skyline中有很多自带的事件可以进行调用,今天给大家介绍几种常用的事件 一、Open() 打开指定工程 二、OnProjectLoadFinished() 在我们执行SGWorld的Open方法,加载完成一个FLY工程后,就会触发这个事件。 也就是说,我们通过这个事件可以判断在什么时间完成了FL ...
分类:
Web程序 时间:
2019-07-17 11:01:45
阅读次数:
198
Skyline 添加定位点 Skyline 添加文本标签 ...
分类:
Web程序 时间:
2019-07-11 11:10:03
阅读次数:
150
ifconfig查看网络配置,找不到IP:1.ifup eth0启动网卡显示错误:device eth0 does mpt see to be present,delaying initialization2.vi /etc/sysconfig/network-script/ifcfg-eth0 编 ...
分类:
系统相关 时间:
2019-05-19 12:04:04
阅读次数:
185
class Solution(object): def maxIncreaseKeepingSkyline(self, grid): """ :type grid: List[List[int]] :rtype: int """ import numpy as np grid=np.array... ...
分类:
其他好文 时间:
2019-04-04 09:56:12
阅读次数:
128
神题神解, 参考1:https://leetcode.com/problems/the-skyline-problem/discuss/61194/108-ms-17-lines-body-explained 参考2:https://briangordon.github.io/2014/08/the ...
分类:
其他好文 时间:
2019-03-08 16:33:46
阅读次数:
202
https://leetcode.com/tag/heap/ ...
分类:
其他好文 时间:
2019-02-05 16:54:59
阅读次数:
163