Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space?题意:...
分类:
其他好文 时间:
2014-08-02 20:52:54
阅读次数:
246
Java运行时涉及到的区域几个基本概念:1.Java对象 2.Java方法 3.一个编译好的类,以class文件的形式出现4.Java的本地方法 5.线程私有和线程共有一、方法区(永久代) 和 堆(heap) 这两个区域是线程共有的,供所有线程使用。所以,对存放在这两个地方的资源进行操作...
分类:
编程语言 时间:
2014-08-02 18:04:13
阅读次数:
276
sudo gedit /usr/local/cuda-5.5/libnsight/nsight.ini--launcher.defaultActionopenFile-vm../jre/bin/java-vmargs-XX:CompileCommand=exclude,java/lang/refle...
分类:
其他好文 时间:
2014-08-02 18:03:33
阅读次数:
295
链接:http://poj.org/problem?id=1808
http://acm.timus.ru/problem.aspx?space=1&num=1132
题意:两道题都是模板题,第一个是判断是否有平方剩余,第二个是计算平方剩余。
思路:平方剩余就是给定a,n(n为质数) 问 x^2 ≡ a (mod n) 是否有解,可以用a^((n - 1)/2) ≡ ±1(mod n) ...
分类:
其他好文 时间:
2014-08-02 10:03:33
阅读次数:
306
Description
Vasya is a ufologist and his duties include observing Unidentified Flying Objects (UFOs) in the part of space bounded by a cube N × N ×N. The cube is divided into cubic sectors 1 ...
分类:
其他好文 时间:
2014-08-01 19:58:52
阅读次数:
302
平台:Ubuntu12.10在Ubuntu的中文系统中自带了中文输入法,通过Ctrl+Space可切换中英文输入法。这里我们主要说下Ubuntu英文系统中,中文输入法的安装。第一步,安装语言包。我们选择System Settings-->Language Support-->Install/Remo...
分类:
其他好文 时间:
2014-08-01 18:56:42
阅读次数:
263
最近在论坛上下载到了一个Cocos2dx的单机跑酷例子,也不知道是2.x版的,花了一天时间试着把他改成3.1.1的试试,现在已经可以顺利编译的,但是还是有Heap Free的问题,调试了好几天,真心累了。代码地址如下:https://github.com/AdoBeatTheWorld/waytom...
分类:
Web程序 时间:
2014-08-01 16:00:51
阅读次数:
287
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:
其他好文 时间:
2014-08-01 12:49:41
阅读次数:
186
链接:http://poj.org/problem?id=1696Space AntTime Limit:1000MSMemory Limit:10000KTotal Submissions:3077Accepted:1965DescriptionThe most exciting space di...
分类:
其他好文 时间:
2014-08-01 10:39:13
阅读次数:
247
一、对堆排序的相关了解
1、堆排序的运行时间是 O(nlogn)
;
2、定义:
堆heap是一棵具有以下属性的二叉树——
(1)它是一棵完全二叉树;
(2)每个结点大于或等于它的任意一个孩子。
备注:完全二叉树的定义——除了最后一层没填满以及最后一层的叶子都是偏左放置的,其他层都是满的二叉树!
3、二叉堆有两种:最大堆和最小堆。在堆排序中我...
分类:
其他好文 时间:
2014-08-01 00:11:00
阅读次数:
269