1. 插件下载地址 https://heychaw.cc/usr/uploads/2018/04/1391963764.crx 2.设置GitHub token Settings->Developer settings->Personal access tokens->Generate new to ...
分类:
其他好文 时间:
2020-07-01 22:18:28
阅读次数:
117
不是我自己写出来的,思想大概是懂的,没自己写,看了别人的代码; public List<TreeNode> generateTrees(int n) { if(n == 0){ return new LinkedList<>(); } return generate_trees(1,n); } pr ...
分类:
其他好文 时间:
2020-07-01 22:03:33
阅读次数:
61
public class Parentheses { public static void main(String[] args) { Stack<String> s = new Stack<>(); String string = StdIn.readString(); String[] inpu ...
分类:
编程语言 时间:
2020-06-30 20:58:47
阅读次数:
52
[TOC]## 1. \*pyStrich (原huBarcode)> [github](https://github.com/mmulqueen/pyStrich)pyStrich is a Python module to generate 1D and 2D barcodes. Current... ...
分类:
其他好文 时间:
2020-06-28 20:16:57
阅读次数:
195
我们再配置IP SLA的时候,有些参数可能会有所混淆。 思科默认的这些参数值如下: frequency Frequency of an operation (60s) timeout Timeout of an operation(5000ms) threshold Operation thresh ...
分类:
其他好文 时间:
2020-06-28 18:31:03
阅读次数:
88
namespace WpfGridChange { using System; using System.CodeDom.Compiler; using System.Diagnostics; using System.Windows; using System.Threading.Tasks; p ...
此博客链接: 首先 我们选择Build -> Generate Signed APK 已经生成apk,需要修改内容,再次生成。 ...
分类:
移动开发 时间:
2020-06-27 11:49:53
阅读次数:
72
1. Run a few randomly-generated problemswith just two jobs and two queues; compute the MLFQ execution trace for each. Make your life easier by limitin ...
分类:
其他好文 时间:
2020-06-26 16:17:45
阅读次数:
78
JPA第三天 第1章Specifications动态查询 有时我们在查询某个实体的时候,给定的条件是不固定的,这时就需要动态构建相应的查询语句,在Spring Data JPA中可以通过JpaSpecificationExecutor接口查询。相比JPQL,其优势是类型安全,更加的面向对象。 imp ...
分类:
编程语言 时间:
2020-06-26 14:20:49
阅读次数:
59
链接:https://leetcode-cn.com/problems/longest-valid-parentheses/ 思路 将整个序列分段,即刚刚不满足左括号数量大于等于右括号数量条件的情况;则任何一个合法序列在每个段内。 使用栈来存储位置。 代码 class Solution { publ ...
分类:
其他好文 时间:
2020-06-25 23:22:59
阅读次数:
45