不是我自己写出来的,思想大概是懂的,没自己写,看了别人的代码; 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
1.最基本的返回验证 //1.验证返回状态码是否是200 pm.test("Status code is 200", function () { pm.response.to.have.status(200); }); //2.验证返回body内是否含有某个值 pm.test("Body match ...
分类:
其他好文 时间:
2020-07-01 20:09:25
阅读次数:
191
Marriage Match IV 思路:属于最短路径上的边应该满足:dis_A[u] + dis_B[v] + w == dis_A[B],dis_A是出发点到其他点的距离,dis_B是终点到其他点的距离,u,v是边的两个端点,w是权值。题目说每条边只能用一次,我们可以用最大流算法来求最短路径有几 ...
分类:
其他好文 时间:
2020-07-01 17:23:25
阅读次数:
54
MySQL补充——忘记密码怎么办 摘要:本文主要记录了在忘记密码时怎么办。 部分内容来自以下博客: https://www.cnblogs.com/wuotto/p/9682400.html 关闭MySQL数据库 使用命令检查MySQL数据库是否已经关闭: 1 [root@localhost ~]# ...
分类:
数据库 时间:
2020-07-01 15:55:00
阅读次数:
75
1、下载文件封装downloadFile.js // 图片转blob function imgURLtoBlob(dataurl) { const arr = dataurl.split(',') const mime = arr[0].match(/:(.*?);/)[1] const bstr ...
分类:
其他好文 时间:
2020-07-01 13:03:35
阅读次数:
127
package LeetCode_210 import java.util.* import kotlin.collections.ArrayList /** * 210. Course Schedule II * https://leetcode.com/problems/course-sched ...
分类:
其他好文 时间:
2020-06-30 22:58:57
阅读次数:
116
clc close all clear x = 1:20; y = 1:20; z = rand(1,20); plot3(x,y,z) xlabel 时间 ylabel 方位角(°) zlabel 高低角(°) grid on for ii=1:1:length(x) text(x(ii),y(i ...
分类:
其他好文 时间:
2020-06-30 22:35:46
阅读次数:
131
Jump Game II (H) 题目 Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array r ...
分类:
其他好文 时间:
2020-06-30 09:14:16
阅读次数:
59
/** * @description 将图片的base64 转变成Blob形式 * */ function dataURLtoBlob(dataurl) { let arr = dataurl.split(',') let mime = arr[0].match(/:(.*?);/)[1] let ...
分类:
其他好文 时间:
2020-06-29 22:53:33
阅读次数:
82
hate-php 源码: <?php error_reporting(0); if(!isset($_GET['code'])){ highlight_file(__FILE__); }else{ $code = $_GET['code']; if (preg_match('/(f|l|a|g|\. ...
分类:
Web程序 时间:
2020-06-29 15:21:04
阅读次数:
65