题目: 解答: 方法一:递归 1 /* 2 // Definition for a Node. 3 class Node { 4 public: 5 int val; 6 vector<Node*> children; 7 8 Node() {} 9 10 Node(int _val) { 11 v ...
分类:
其他好文 时间:
2020-05-03 14:47:39
阅读次数:
45
题目: 解法: 广度优先遍历就好。 1 /* 2 // Definition for a Node. 3 class Node { 4 public: 5 int val; 6 vector<Node*> children; 7 8 Node() {} 9 10 Node(int _val) { 1 ...
分类:
其他好文 时间:
2020-05-03 13:02:57
阅读次数:
80
官方文档:https://pay.weixin.qq.com/wiki/doc/api/index.html 引入jdom-1.1.3.jar包 HttpClientUtil.java package weixinpay; import org.apache.commons.lang.StringU ...
分类:
微信 时间:
2020-05-02 10:03:57
阅读次数:
104
前言: 想将.proto文件转换成.pb文件时一直报错,一开始以为是文件编码格式的问题,后来将文件改成windows下的utf-8格式后,又出现了新的报错(见下图)。百度了很久,才找到解决方法。 这个报错的意思是:“building_produce”在整个放pb文件的“WNet”文件夹中必须是唯一的 ...
分类:
编程语言 时间:
2020-05-01 18:21:36
阅读次数:
100
There are some situations where you want to focus your tests on a particular component and not any of its children. There are other situations where y ...
分类:
其他好文 时间:
2020-05-01 01:32:17
阅读次数:
93
1、childNodes:获取节点,不同浏览器表现不同; IE:只获取元素节点; 非IE:获取元素节点与文本节点; 解决方案:if(childNode.nodeName=="#text") continue 或者 if(childNode.nodeType != '3') continue 2、ch ...
分类:
Web程序 时间:
2020-04-27 19:13:08
阅读次数:
123
nodejs中的module.exports 与 require list.js exports.f = function(f){} module.exports.hello = "hello" console.log(module) index.js const a = require('./li ...
分类:
Web程序 时间:
2020-04-27 17:15:13
阅读次数:
51
主键约束 唯一确定一张表的记录,给某个字段添加约束就可以确认它不为空且唯一 在定义的参数后添加 primary key create table user( id int(20) primary key, name varchar ); --联合主键 任意一个不为空即可-- create table ...
分类:
数据库 时间:
2020-04-26 01:32:25
阅读次数:
89
Time Limit: 2 sec / Memory Limit: 1024 MB Score : 500 points ps:一道dp,这次真的是我自己写的!一直没过,把int都改成ll过了= =没注意数据范围qaq Problem Statement There are NN children ...
分类:
其他好文 时间:
2020-04-25 16:58:58
阅读次数:
63
这次的知识点是如何使用js获取checkbox控件所在的是第几行!!! 我们可以使用 JavaScript 中自带的 rowIndex 和 cellIndex 来获取行和列的键值 (从0开始) 这两个一定要记好: var row_num = GV.rows[i].cells[0].children( ...
分类:
Web程序 时间:
2020-04-21 14:53:05
阅读次数:
66