码迷,mamicode.com
首页 >  
搜索关键字:digital roots    ( 1030个结果
UVALive 4728 Squares
SquaresThe famous Korean IT companyplans to make a digital map of the Earth with help of wireless sensors which spread out in rough terrains. Each ...
分类:其他好文   时间:2014-12-08 12:03:39    阅读次数:329
深入理解Java虚拟机笔记---判断对象是否存活
堆中几乎存放着Java世界中所有的对象实例,垃圾收集器在对堆回收之前,第一件事情就是要确定这些对象哪些还“存活”着,哪些对象已经“死去”(即不可能再被任何途径使用的对象) 1.引用计数算法    很多教科书判断对象是否存活的算法是这样的:给对象中添加一个引用计数器,每当有一个地方引用它时,计数器值加1;当引用失效时,计数器减1;任何时刻计数器都为0的对象就是不可能再被使用的。     引...
分类:编程语言   时间:2014-12-05 19:28:36    阅读次数:252
深入理解java虚拟机-第三章
1、概述2、对象已死吗?引用计数器 给对象添加一个引用计数器,每当有引用时,计数器加1,引用失效时,计数器减1;任何时刻计数器为0的对象就是不可能再被使用的。 若对象是循环引用,则无法处理。JVM不使用。可达性分析算法 通过一系列的称为“GC Roots”的对象作为起始点,从这些节点开始向下搜...
分类:编程语言   时间:2014-12-03 00:12:31    阅读次数:181
什么是GC Roots
GC Root 2012年11月28日? ? 综合?? 共 625字 ? 字号? 小?中?大? ??评论关闭 常说的GC(Garbage Collector) roots,特指的是垃圾收集器(Garbage Collector)的对象,GC会收集那些不是GC roots且没有被G...
分类:其他好文   时间:2014-12-01 01:20:54    阅读次数:205
C++ md5 函数
转 http://www.zedwood.com/article/cpp-md5-function MD5 is no longer considered cryptographically safe for digital signatures, however, because the md5 ...
分类:编程语言   时间:2014-11-27 10:24:56    阅读次数:403
Digital Roots
BackgroundThe digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that dig...
分类:其他好文   时间:2014-11-26 20:37:15    阅读次数:145
Digital Roots(杭电1013)(字符串处理)(大数)
Digital Roots Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 50923    Accepted Submission(s): 15890 Problem Description The digita...
分类:其他好文   时间:2014-11-25 23:40:26    阅读次数:213
low level descriptors and high level descriptors
Types of visual descriptors[edit] Descriptors are the first step to find out the connection between pixels contained in a digital image and what humans recall after having observed an image or a ...
分类:其他好文   时间:2014-11-25 16:32:32    阅读次数:293
交互设计资源
1.苹果ios界面设计库  http://pttrns.com/  2.交互设计网站 digital web:The web professional's online magazine of choice.  http://www.digital-web.com/  3.Signal vs. Noise:37 signal的官方blog  http://37signals.com/sv...
分类:其他好文   时间:2014-11-24 19:17:07    阅读次数:163
Digital root的求解
源于hdu1013题目描述:The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that...
分类:其他好文   时间:2014-11-23 18:54:41    阅读次数:249
1030条   上一页 1 ... 89 90 91 92 93 ... 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!