码迷,mamicode.com
首页 >  
搜索关键字:world space    ( 29110个结果
Recover Binary Search Tree
Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A solution using O(n) space is ...
分类:其他好文   时间:2014-05-17 11:30:21    阅读次数:247
Tomcat7 perm space解决(转)
set JAVA_OPTS=%JAVA_OPTS% -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=256m -Xverify:none -da注意:很多说要加上参数-server,即set ...
分类:其他好文   时间:2014-05-17 02:12:34    阅读次数:296
[转]Oracle AWR(Automatic Workload Repository)使用解析
一. AWR说明Oracle 10g之前对数据库做性能检测使用statspack工具。关于statspack的说明,参考我的Blog:statspack安装使用和report分析http://space.itpub.net/28673746/viewspace-757339Oracle Databa...
分类:数据库   时间:2014-05-16 20:34:39    阅读次数:610
Android开发环境及Hello World程序
Android的开发需要以下四个工具: 1. JDK2. Eclipse3. Android SDK4. ADT具体功能: 1. JDK。JDK即Java Development Kit(Java开发工具包),包括JAVA运行环境,基础类库和JAVA工具,是JAVA运行的基础。 2. Eclipse...
分类:移动开发   时间:2014-05-16 06:31:18    阅读次数:397
LeetCode OJ - Sort List
题目: Sort a linked list inO(nlogn) time using constant space complexity.解题思路: 复杂度为O(n* logn) 的排序算法有:快速排序、堆排序、归并排序。对于链表这种数据结构,使用归并排序比较靠谱。递归代码如下:代码: /...
分类:其他好文   时间:2014-05-16 05:49:04    阅读次数:266
LeetCode OJ - Linked List Cycle
题目: Given a linked list, determine if it has a cycle in it. Follow up: Can you solve it without using extra space?解题思路: 使用快慢指针,快指针每次走两步,慢指针每次走一步...
分类:其他好文   时间:2014-05-16 05:19:21    阅读次数:271
vbs文件共享变量与函数的方法
参考资料:vbs能否像其他编程语言一样,把写好的代码打包成类库以供调用呢?经过搜索和实验,发现vbs文件之间可以互相调用并共享变量,这样我们就不用再反复地编写轮子了。 以下是一个调用实例:=====1.vbs开始=====dim strstr = "hello world"=====1.vbs结束=...
分类:其他好文   时间:2014-05-16 05:03:23    阅读次数:225
2014 New Air Jordans 6 World Cup Brazil For Sale
Jordan Brand has been going out of theAir Jordan 6 World Cup Brazilordinary with some of their Retro colorways over the last few years and the trend c...
分类:其他好文   时间:2014-05-15 16:47:00    阅读次数:288
SpringMVC学习系列(2) 之 经典的HelloWorld实现
前一篇简单介绍了Spring MVC的一些知识,下面就要开始学习如何把Spring MVC运用到具体的项目中去。首先还是从一个简单的Hello World项目说起:我机器的开发环境为:Ubuntu12.04(不同操作系统对本系列项目没有什么影响);开发工具:Eclipse;数据库:MySql5.5....
分类:编程语言   时间:2014-05-14 08:18:27    阅读次数:540
POJ3067:Japan(线段树)
Description Japan plans to welcome the ACM ICPC World Finals and a lot of roads must be built for the venue. Japan is tall island with N cities on the East coast and M cities on the West coast (M <= ...
分类:其他好文   时间:2014-05-13 14:53:40    阅读次数:189
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!