码迷,mamicode.com
首页 >  
搜索关键字:depth    ( 1433个结果
数据分析小实践:统计每个国家存在心理健康问题的平均年龄
# -*- coding:utf-8 -*- """ 统计每个国家存在心理健康问题的平均年龄 """ import csv import matplotlib.pyplot as plt import numpy as np import matplotlib data_depth = "./dat... ...
分类:其他好文   时间:2017-05-27 21:15:44    阅读次数:256
[LeetCode][Java] Minimum Depth of Binary Tree
题目: Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to the neare ...
分类:编程语言   时间:2017-05-27 19:09:23    阅读次数:154
Depth upsampling note
数据:bicubic:downsampling +upsampling 卷边 做的实验: Patch 41X41 大部分效果不好,黑边严重,部分很好 当前:X8 patch:256x256 数据 使用bilinear Layer201053问题描述边界稍微模糊,黑边情况降低 收敛慢,l1->200原... ...
分类:其他好文   时间:2017-05-25 23:23:11    阅读次数:191
linux查找文件
find . -type f -size +800M ###查找大于800M的文件 du -h --max-depth=1 #查找目录,最高一级 find / -name mysql #查找mysql的文件 find / -name -type d mysql #查找叫mysql的目录 ...
分类:系统相关   时间:2017-05-19 19:34:42    阅读次数:144
Chapter five Depth First Search(深度优先搜索)
组合搜索问题 Combination 问题模型:求出所有满足条件的“组合”。判断条件:组合中的元素是顺序无关的。时间复杂度:与 2^n 相关。 1.Chapter one 第2题 subsets(子集) 2.Chapter one 第3题 subsets-ii(子集II) 3.combination ...
分类:其他好文   时间:2017-05-19 17:50:19    阅读次数:212
Linux du查询文件大小
#查询磁盘当前容量信息 $df -h #查询当前目录下所有文件的大小 $du -m . #两种方式查询 仅当前目录下的子文件(文件夹)大小 $du -sh /cloud/* $du -h --max-depth=1 /cloud/ ...
分类:系统相关   时间:2017-05-19 10:10:47    阅读次数:155
Shadow Map 原理和改进 【转】
http://blog.csdn.net/ronintao/article/details/51649664 参考 1、Common Techniques to Improve Shadow Depth Maps 2、Tutorial 16 : Shadow mapping 3、Shadow Map ...
分类:其他好文   时间:2017-05-17 18:22:52    阅读次数:650
Json_decode:详解
Json_decode:详解 json_decode — 对 JSON 格式的字符串进行编码 mixed json_decode ( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] ) 接... ...
分类:Web程序   时间:2017-05-16 13:12:04    阅读次数:191
Reversed-Z详解
因为cnblogs不支持word公式的显示,我只好截图了。 文中提到的链接如下: https://developer.nvidia.com/content/depth-precision-visualized http://www.codeguru.com/cpp/misc/misc/math/ar ...
分类:其他好文   时间:2017-05-14 10:29:40    阅读次数:184
leetCode 104.Maximum Depth of Binary Tree(二叉树最大深度) 解题思路和方法
Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest l ...
分类:其他好文   时间:2017-05-13 16:08:33    阅读次数:187
1433条   上一页 1 ... 56 57 58 59 60 ... 144 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!