Problem Description
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 digit is the digital root. If the resultin...
分类:
其他好文 时间:
2015-02-22 11:07:30
阅读次数:
116
可达性分析算法
来判断对象是否存活。这个算法的基本思路是通多一系列的称为“gc roots”的对象作为起始点,从这些节点开始向下搜索,搜索所走过的路径称为引用链,当一个对象到gc roots没有任何引用链项连时(图论来说,从gc到这个对象不可达),则证明此对象是不可用的。
JAVA语言中,可作为gc roots的对象包括下面几种:
虚拟机栈(栈帧中的本地变量表)中引用的对象。
方法区中类静态属性...
分类:
其他好文 时间:
2015-02-09 12:57:44
阅读次数:
138
Problem Description
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 digit is the digital root. If the resulting value contains two or more digits, those digits are sum...
分类:
其他好文 时间:
2015-02-08 18:14:30
阅读次数:
113
Digital Roots
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 53073 Accepted Submission(s): 16565
Problem Description
The digita...
分类:
其他好文 时间:
2015-02-07 14:35:05
阅读次数:
121
题目:http://poj.org/problem?id=1284题意:就是求一个奇素数有多少个原根分析:使得方程a^x=1(mod m)成立的最小正整数x是φ(m),则称a是m的一个原根然后有这样的定理: 1、所有奇素数都有原根 2、如果一个数n有原根,那么原根个数为φ(φ(n))由性质2就可.....
分类:
其他好文 时间:
2015-02-07 00:24:05
阅读次数:
98
重点关注几个问题:-对象已死吗?采用引用计数法(不能解决相互循环引用问题)或可达性分析法。引用计数法:计算对象的引用数,计数为0时对象被回收。可达性分析:通过一系列的"GC Roots"的对象(如栈中引用的对象、方法区中类静态属性引用的对象、常量引用的对象)作为起始向下搜索,搜索所走过的路径称为引用...
分类:
其他好文 时间:
2015-02-03 12:47:24
阅读次数:
127
Odd period square roots
Problem 64
All square roots are periodic when written as continued fractions and can be written in the form:
√N = a0 +
1
a1 +
1
...
分类:
编程语言 时间:
2015-02-01 16:14:25
阅读次数:
303
java堆溢出java堆用于存储对象实例,只要不断地创建对象,并且保证gc roots到对象之间有可达路径来避免垃圾回收机制来清楚这些对象,那么在 对象到达最大堆的容量限制后就会产生内存溢出溢出。异常:java.lang.OutOfMemoryError: java heap space要解决这个区...
分类:
编程语言 时间:
2015-01-12 11:28:13
阅读次数:
316
Digital Roots
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 52224 Accepted Submission(s): 16315
Problem Description
The digital root...
分类:
其他好文 时间:
2015-01-11 11:03:17
阅读次数:
223
Project management in the modern sense began in the early 1950s, although it has its roots further back in the latter years of the 19th century. The d...
分类:
其他好文 时间:
2014-12-29 10:24:50
阅读次数:
187