原题链接在这里:https://leetcode.com/problems/increasing-triplet-subsequence/ 题目: Given an unsorted array return whether an increasing subsequence of length 3 ...
分类:
其他好文 时间:
2019-09-03 09:13:53
阅读次数:
64
内核版本 Linux 4.7 Note:64位系统中,不再使用 来进行系统调用,取而代之的是 指令 %rax| System call| %rdi| %rsi| %rdx| %r10| %r8| %r9 | | | | | | | 0| sys_read| unsigned int fd| char ...
分类:
系统相关 时间:
2019-09-02 23:51:52
阅读次数:
111
周末在一台MySQL实例上频繁做大批量的写入测试,无意中发现MySQL的errorlog中频繁出现如下的Note:page_cleaner: 1000ms intended loop took **** ms. The settings might not be optimal. (flushed= ...
分类:
数据库 时间:
2019-09-02 13:39:45
阅读次数:
514
[TOC] Problem portal: "1008 Elevator (20 分)" Description The highest building in our city has only one elevator. A request list is made up with ...
分类:
其他好文 时间:
2019-09-02 09:24:38
阅读次数:
100
NOTE:转自网络,具体来源不知。先对原作者表示感谢! 可算是稍微了解了一下类似工作。 IT行业的技术工作,可以分为四个体系,售前、研发、实施、维护。 最近找工作,因为自己主要聚焦于云计算与区块链行业,然后关注到云计算解决方案产品经理、云解决方案架构师这类职业。一开始没有特别在意,后来看到相关岗位比 ...
分类:
其他好文 时间:
2019-09-01 22:00:17
阅读次数:
224
1. HTMLTestRunner.py 代码(python3)如下: python2: https://github.com/tungwaiyip/HTMLTestRunner 1 """ 2 A TestRunner for use with the Python unit testing fr ...
分类:
Web程序 时间:
2019-09-01 21:51:33
阅读次数:
104
SpringBoot @valid 参数校验 ~~~java 空检查 @Null 验证对象是否为null @NotNull 验证对象是否不为null, 无法查检长度为0的字符串 @NotBlank 检查约束字符串是不是Null还有被Trim的长度是否大于0,只对字符串,且会去掉前后空格. @NotE ...
分类:
编程语言 时间:
2019-09-01 16:45:00
阅读次数:
682
Problem Statement Given a binary tree, return all root-to-leaf paths. Given a binary tree, return all root-to-leaf paths. Note: A leaf is a node with ...
分类:
其他好文 时间:
2019-09-01 10:45:06
阅读次数:
59
Given inorder and postorder traversal of a tree, construct the binary tree. Note:You may assume that duplicates do not exist in the tree. For example, ...
分类:
其他好文 时间:
2019-09-01 10:42:11
阅读次数:
87
$dfs$ 好啊 题意 有一队人,你可以用火球点某个人,会对当前人造成a点伤害,对旁边的人造成b点伤害。 不能打1号和n号,求最少多少发点死所有人。 Note 一个人被打死当且仅当它的血量 $<0$。 1 #include<iostream> 2 #include<cstdio> 3 #includ ...
分类:
其他好文 时间:
2019-08-31 21:39:33
阅读次数:
58