码迷,mamicode.com
首页 >  
搜索关键字:marriage match ii    ( 11687个结果
leetcode——95.不同的二叉搜索树II
不是我自己写出来的,思想大概是懂的,没自己写,看了别人的代码; 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
Postman接口返回结果验证
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 HDU - 3416
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补充——忘记密码怎么办
MySQL补充——忘记密码怎么办 摘要:本文主要记录了在忘记密码时怎么办。 部分内容来自以下博客: https://www.cnblogs.com/wuotto/p/9682400.html 关闭MySQL数据库 使用命令检查MySQL数据库是否已经关闭: 1 [root@localhost ~]# ...
分类:数据库   时间:2020-07-01 15:55:00    阅读次数:75
前端下载后台传入的pdf base64格式的文件
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
210. Course Schedule II
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
matlab 绘制三维图并标注每个点的坐标
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
0045. Jump Game II (H)
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
Base64转Blob的方式
/** * @description 将图片的base64 转变成Blob形式 * */ function dataURLtoBlob(dataurl) { let arr = dataurl.split(',') let mime = arr[0].match(/:(.*?);/)[1] let ...
分类:其他好文   时间:2020-06-29 22:53:33    阅读次数:82
“第五空间”智能安全大赛-Web-writeup
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
11687条   上一页 1 ... 38 39 40 41 42 ... 1169 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!