题目链接 https://acm.bnu.edu.cn/v3/problem_show.php?pid=52310 problem description Define the depth of a node in a rooted tree by applying the following ru ...
分类:
其他好文 时间:
2016-10-03 21:13:22
阅读次数:
293
1.查看当前文件大小du -sh ./ du [-abcDhHklmsSx] [-L <符号连接>][-X <文件>][--block-size][--exclude=<目录或文件>] [--max-depth=<目录层数>][--help][--version][目录或文件] 常用参数: -a或- ...
分类:
系统相关 时间:
2016-10-02 17:05:17
阅读次数:
168
<a href="/bookCn.jhtml" class="depth_2"><span class="icon10"></span>订阅</a> 少上面的红色的“/” 会导致,当你进入其他页面后再点击菜单时,他会把当前页面所在的路径作为新页面的伏击元素。 ...
分类:
其他好文 时间:
2016-09-30 15:10:27
阅读次数:
142
java核心技术卷一 java基础类型 整型 浮点类型 boolean 类型和char 类型 java字符串 不可变字符串 深入解析String#intern: http://tech.meituan.com/in_depth_understanding_string_intern.html jav ...
分类:
编程语言 时间:
2016-09-30 07:46:28
阅读次数:
231
1.Unsigned 8bits(一般的图像文件格式使用的大小)IplImage数据结构参数:IPL_DEPTH_8UCvMat数据结构参数:CV_8UC1,CV_8UC2,CV_8UC3,CV_8UC4 2.Signed 8bitsIplImage数据结构参数:IPL_DEPTH_8SCvMat数 ...
分类:
其他好文 时间:
2016-09-28 01:20:59
阅读次数:
286
算法分析:求树的最小最大深度时候,都有两种方法,第一种是递归思想。树最大最小深度,即为它的子树的最大最小深度+1,是动态规划的思想。还有一种方法是层序遍历树,只不过求最小深度时,找到第一个叶子节点就可以返回,该节点的深度,即为树的最小深度。求最大深度时,需要层序遍历完整棵树。 ...
分类:
其他好文 时间:
2016-09-27 06:57:43
阅读次数:
132
数的全排列,是一个很简单的问题,平时我们用笔用纸就能列出答案,但是数列位多的时候,排列的结果就有非常多了,例如有1,2,3,4,5,6,7,8,9这一个数列,有9个数字,则有9!(9的阶乘)这么多种结果。那是非常大的。今天我就来介绍用深度优先搜索来解决这个数的全排列的问题。 深度优先搜索 首先简单介 ...
分类:
编程语言 时间:
2016-09-24 16:01:50
阅读次数:
518
Given a nested list of integers, return the sum of all integers in the list weighted by their depth. Each element is either an integer, or a list -- w ...
分类:
其他好文 时间:
2016-09-24 07:04:21
阅读次数:
190
Given a nested list of integers, return the sum of all integers in the list weighted by their depth. Each element is either an integer, or a list -- w ...
分类:
其他好文 时间:
2016-09-24 07:03:26
阅读次数:
113