struct BinaryTreeNode { int nvalue=0; BinaryTreeNode* pleft = nullptr; BinaryTreeNode* pright = nullptr; BinaryTreeNode* parent = nullptr;};vector<vec ...
分类:
其他好文 时间:
2020-07-18 22:37:14
阅读次数:
87
Remove the minimum number of invalid parentheses in order to make the input string valid. Return all possible results. Note: The input string may cont ...
分类:
其他好文 时间:
2020-07-18 15:29:10
阅读次数:
71
只有csr没有crt,每次创建新的证书的时候都报错失效日期错误,只有请求证书信息没有生成证书信息
分类:
其他好文 时间:
2020-07-18 11:40:11
阅读次数:
104
XProtect installer may fail with the error "Category does not exist" or "Cannot load Counter Name data because an invalid index" When running the XPro ...
分类:
其他好文 时间:
2020-07-17 19:49:17
阅读次数:
124
注意?? 请选择对c++11支持完善的编译器, 因为spdlog一直更新。 本文演示环境: mac osx Mojave10.14.6 , Xcode version: 11.0 本文使用的是clang++对代码的编译 1、准备 A、spdlog源码(当前为1.7): https://github. ...
分类:
其他好文 时间:
2020-07-16 00:12:36
阅读次数:
72
在RedHat下有时候用rpm安装软件是会出现下面则中错误 1、安装时提示:warning: *.rpm: Header V3 RSA/SHA256 Signature, keykey ID c105b9de: NOKEY 解决的方法就是在rpm 语句后面加上 --force --nodeps 即原 ...
分类:
其他好文 时间:
2020-07-14 13:31:45
阅读次数:
95
python2与python3的编码问题 无论是python2还是python3都可以理解成是Unicode编码; 但是在电脑硬盘上存储是按照不同的映射关系的。 首先了解下: python的encode和decode 首先明白一件事情,之前说过Unicode将所有的字符都对应上了相应的码点,而UTF ...
分类:
编程语言 时间:
2020-07-13 21:23:24
阅读次数:
84
[CSS 中文开发手册:-moz-ui-invalid (Extensions) - CSS 中文开发手册非标准此功能是非标准的。不要在面向Web的生产站点上使用它:它并不适用于每个用户。实现之间也可能存在很大的不兼容性,而且这种行为在未来可能会发生变化。:-moz-ui-invalidCSS伪类代... ...
分类:
Web程序 时间:
2020-07-12 01:16:06
阅读次数:
94
django中关于表单自定义验证器和常用验证器 常用验证器: 在验证某个字段的时候,可以传递一个 validators 参数用来指定验证器,进一步对数据进行过滤。验证器有很多,但是很多验证器我们其实已经通过这个 Field 或者一些参数就可以指定了。比如 EmailValidator ,我们可以通过 ...
分类:
其他好文 时间:
2020-07-11 19:08:56
阅读次数:
74
Centos7.5 编译安装apr-util时报错:xml/apr_xml.c:35:19: fatal error: expat.h: No such file or directory 解决方案:yum install expat-devel 编译pcre 报错 error: Invalid C ...
分类:
Web程序 时间:
2020-07-10 13:39:29
阅读次数:
92