码迷,mamicode.com
首页 >  
搜索关键字:roots    ( 417个结果
判定对象是否存活的算法----GC_ROOT算法
要应用GC_ROOT算法,判定某个对象是否会被回收,关键是要确定root。 【 说到GC roots(GC根),在JAVA语言中,可以当做GC roots的对象有以下几种: 1、虚拟机栈中的引用的对象。 2、方法区中的类静态属性引用的对象。 3、方法区中的常量引用的对象。 ...
分类:其他好文   时间:2014-08-02 12:35:13    阅读次数:255
zju 1115 Digital roots 数字根
#include #include using namespace std;int main(){ string n; while(cin>>n,n!="0"){ int s=0,l=n.length(); for(int i=0;i9) s=s/10+s%10; cout...
分类:其他好文   时间:2014-08-02 01:30:32    阅读次数:382
hdu 1013 Digital Roots
Digital Roots Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 48348    Accepted Submission(s): 15029 Problem Description The digita...
分类:其他好文   时间:2014-08-01 10:52:11    阅读次数:280
POJ 1284 Primitive Roots (求原根个数)
Primitive Roots 题目链接:http://poj.org/problem?id=1284 利用定理:素数 P 的原根的个数为euler(p - 1) typedef long long ll; using namespace std; /* 求原根 g^d ≡ 1(mod p) 其中d最小为p-1,g 便是一个原根 复杂度:O(m)*lo...
分类:其他好文   时间:2014-07-30 20:43:34    阅读次数:260
UVA 10428 - The Roots(牛顿迭代法)
UVA 10428 - The Roots 题目链接 题意:给定一个一元多次方程组,要求求出所有根 思路:利用牛顿迭代法 xn+1=xn?f(xn)/f′(xn),不断迭代就能求出较为精确的值,然后由于有的方程可能有多解,每次解得一个X后,就把原式子除以(x - X),这个是肯定能整除的,把方程降阶然后继续用牛顿迭代法直到求出所有解 代码: #include #...
分类:其他好文   时间:2014-07-26 02:48:56    阅读次数:181
ACM——Digital Roots
http://acm.njupt.edu.cn/acmhome/problemdetail.do?&method=showdetail&id=1028Digital Roots时间限制(普通/Java):1000MS/3000MS 运行内存限制:65536KByte总提交:493 ...
分类:其他好文   时间:2014-07-23 22:30:07    阅读次数:262
java 内存泄露 学习
1.什么事内存泄露内存泄露就是对象不用了,但是无法回收该对象占用的内存。2.java不是有垃圾回收机制,咋还会发生内存泄露呢?java的垃圾回收机制就是把无用的对象(GC roots可达与否)用的内存回收,但是垃圾回收不是万能的,在一些场合会出现内存泄露,长对象持有短对象的引用,1、静态集合类1 S...
分类:编程语言   时间:2014-07-19 20:33:54    阅读次数:180
saltstack细节要点
1、pillar的top.sls的路径是由pillar_roots和state_top配置参数决定的。2、_grains和_modules目录必须是file_roots定义的目录3、编写sls文件时经常会出现tab,但yaml只支持空格。其实可以转换的,转换如下::setexpandtab:%ret!4(如果tab是8个空格,则是8)4、在编写策略时,如果..
分类:其他好文   时间:2014-07-19 02:23:45    阅读次数:270
杭电 1163 Eddy's digital Roots
Eddy's digital Roots Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 4275    Accepted Submission(s): 2404 Problem Description The digit...
分类:其他好文   时间:2014-07-14 20:30:11    阅读次数:194
HDU 1013 Digital Roots 题解
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 summed and the process ...
分类:其他好文   时间:2014-07-08 14:12:32    阅读次数:226
417条   上一页 1 ... 39 40 41 42 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!