链接 "637. Average of Levels in Binary Tree" 题意 给定非空二叉树,求出每一层数的平均值 思路 利用队列存储每一层的数,存完之后需要取出size,再循环求平均值。这样保证了循环的次数就是每一层的结点数。 代码 Java / Definition for a b ...
分类:
其他好文 时间:
2017-11-14 17:13:00
阅读次数:
151
DOM(Document Object Model),“文档对象模型”早期是为了解决不用浏览器间数据兼容问题提出的解决方案,现在已经是W3C组织推荐的处理可扩展标志语言的标准编程接口。 W3C DOM 被分为 3 个不同的部分/级别(parts / levels): 核心 DOM:用于任何结构化文档 ...
分类:
其他好文 时间:
2017-11-14 11:32:39
阅读次数:
184
https://github.com/cloudera/flume/blob/master/flume-docs/src/docs/UserGuide/Introduction ...
分类:
其他好文 时间:
2017-11-11 11:37:26
阅读次数:
240
由于Intellij idea不支持显示ascii颜色,grep-console插件能很好的解决这个问题,下面就以开发JavaEE项目中,结合Log4j配置多颜色日志输出功能。 安装grep-console插件 https://plugins.jetbrains.com/plugin/7125-gr ...
分类:
其他好文 时间:
2017-11-10 13:54:24
阅读次数:
395
系统服务管理工具: chkconfig(所有linux发行版都有),用法很简单,如下: usage: chkconfig --list [name] chkconfig --add <name> chkconfig --del <name> chkconfig [--level <levels>] ...
分类:
其他好文 时间:
2017-11-03 13:04:32
阅读次数:
168
gradle need to use bootRepackage which will package all the dependencies, not to use jar task which will only package your main class code websocket u ...
分类:
Web程序 时间:
2017-11-01 18:59:08
阅读次数:
280
由于Revit的版本问题,在网上找的生成墙图元的代码,在我机器上的Revit 2016中编译不能通过,通过多次调试,终于找到在revit 2016中使用API生成墙图元的代码,现在贴出来。 下面的代码在Revit 2016 + VS2013的环境下通过。 ...
Given a non-empty binary tree, return the average value of the nodes on each level in the form of an array. Example 1: ...
分类:
其他好文 时间:
2017-10-22 21:27:55
阅读次数:
91