题意: 有一个树,有些节点染色,每次有两种操作,第一,统计该节点到离它最近的染色父亲结点的的号码(Q),第二,为某一个节点染色(M),求第一种操作和。 输入: 输入由多个数据集组成。每个数据集都有以下格式:输入的第一行包含两个整数N和Q,分别表示树T中的节点数和操作数。这些数字满足以下条件:1≤N≤ ...
分类:
其他好文 时间:
2018-06-25 22:48:37
阅读次数:
208
问题描述: Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the definition of LCA on Wikipedia: “The ...
分类:
其他好文 时间:
2018-06-16 11:52:45
阅读次数:
176
出现这种错误的原因 1.接口A 调用了接口B 2.接口B报异常了,没有在B里面进行try catch捕获 3.接口A对 接口B进行了try catch捕获 因为接口B报异常 会把当前事物A接口的事物(如果B没有开启新的事物) 标志成rollback-only 然后因为接口A对B进行了try catc ...
分类:
其他好文 时间:
2018-06-14 20:47:47
阅读次数:
189
Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the definition of LCA on Wikipedia: “The lowes ...
分类:
其他好文 时间:
2018-06-09 10:17:55
阅读次数:
230
问题描述: A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at ...
分类:
其他好文 时间:
2018-06-03 10:42:34
阅读次数:
145
62. Unique Paths A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down ...
分类:
其他好文 时间:
2018-06-02 19:06:01
阅读次数:
197
Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the definition of LCA on Wikipedia: “The lowes ...
分类:
其他好文 时间:
2018-05-30 10:50:40
阅读次数:
129
相关的内容:http概念、版本、工作模式、web资源、开源实现(动、静态资源请求与响应)、httpd的特性、httpd功能、httpd的程序环境http协议: Hyper-Text Transfer Protocol,超文本传输协议; HTML:Hyper-Text Marked Language,超文本标记语言;http的版
分类:
Web程序 时间:
2018-05-18 10:05:37
阅读次数:
200
MySQL 查询数据 LIMIT后面跟的是3条数据,OFFSET后面是从第3条开始读取。 MySQL WHERE 子句 WHERE子句的条件操作符可以是=(等号)、<>, !=(不等于)、>(大于号)、<(小于号)、>=(大于等于号)、<=(小于等于号)。 MySQL UPDATE 查询 MySQL ...
分类:
数据库 时间:
2018-05-17 23:21:42
阅读次数:
219
首先要了解一下我们搭建博客要用到的框架。Hexo是高效的静态站点生成框架,它基于Node.js。通过Hexo,你可以直接使用Markdown语法来撰写博客。相信很多小伙伴写工程都写过README.md文件吧,对,就是这个格式的!写完后只需两三条命令即可将生成的网页上传到你的github上,然后别人就 ...
分类:
其他好文 时间:
2018-05-16 13:15:45
阅读次数:
677