ptrWaveBox.Axes(1).Maximum = 1000 ptrWaveBox.Axes(2).Maximum = 20 ptrWaveBox.Axes(2).Minimum = 0 Dim fTemp(2000) As Single For n = 0 To iPixel - 1 fTe... ...
分类:
其他好文 时间:
2019-09-09 19:09:10
阅读次数:
73
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, mi... ...
分类:
其他好文 时间:
2019-09-09 16:29:06
阅读次数:
379
原题链接在这里:https://leetcode.com/problems/new-21-game/ 题目: Alice plays the following game, loosely based on the card game "21". Alice starts with 0 points ...
分类:
其他好文 时间:
2019-09-09 12:56:07
阅读次数:
86
Leetcode之动态规划(DP)专题-53. 最大子序和(Maximum Subarray) 给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。 示例: 进阶: 如果你已经实现复杂度为 O(n) 的解法,尝试使用更为精妙的分治法求解。 定义:dp ...
分类:
其他好文 时间:
2019-09-06 13:21:35
阅读次数:
79
出现原因: 这个错误意思是超过最大递归深度,python默认的递归深度默认是1000),因此当递归深度超过就会引发这样的异常。 解决方法: 1.执行pyinstaller -F XXX.py 它会在你的目录文件生成XXX.spec文件,然后报错,出现该类异常。 2.打开XXX.spec文件,在开头添 ...
分类:
其他好文 时间:
2019-09-05 14:03:22
阅读次数:
92
该问题由2019年3-4月份的补丁引起的,会导致所有使用WDS的PXEDP的问题,客户端使用PXE启动时,界面报错如下:微软官方文档如下:https://support.microsoft.com/zh-cn/help/4512816/devices-that-start-up-using-preboot-execution-environment-pxe-images-f解决方案:目前,该问题已
分类:
其他好文 时间:
2019-09-04 13:39:50
阅读次数:
141
C#遍历目录树的递归 众所周知,获得某一目录下第一级的所有文件和文件夹列表,很容易办到: DirectoryInfo di=new DirectoryInfo(strBaseDir);//strBaseDir是起始目录,绝对地址 DirectoryInfo[] diA=di.GetDirectori ...
分类:
其他好文 时间:
2019-09-04 13:23:11
阅读次数:
89
A、Maximum Element In A Stack As an ACM-ICPC newbie, Aishah is learning data structures in computer science. She has already known that a stack, as a d ...
分类:
其他好文 时间:
2019-09-03 21:55:44
阅读次数:
102
原题链接在这里:https://leetcode.com/problems/maximum-length-of-repeated-subarray/ 题目: Given two integer arrays A and B, return the maximum length of an subar ...
分类:
其他好文 时间:
2019-09-03 12:04:03
阅读次数:
89
SpringBoot @valid 参数校验 ~~~java 空检查 @Null 验证对象是否为null @NotNull 验证对象是否不为null, 无法查检长度为0的字符串 @NotBlank 检查约束字符串是不是Null还有被Trim的长度是否大于0,只对字符串,且会去掉前后空格. @NotE ...
分类:
编程语言 时间:
2019-09-01 16:45:00
阅读次数:
682