码迷,mamicode.com
首页 >  
搜索关键字:maintain    ( 155个结果
java collection 集合源码分析(三) map
TreeMap 首先看下TreeMap的头部声明的两个变量,TreeMap的排序利用红黑树进行 ????/** ?????*?The?comparator?used?to?maintain?order?in?this?tree?map,?or ?????*?null?if?it?use...
分类:编程语言   时间:2015-09-01 18:36:17    阅读次数:192
mac上node+express+ejs前端项目搭建
纪录一下我在Mac上搭建前端web项目的过程1、安装node到网上找到自己需要安装的node版本:http://www.oschina.net/news/60538/node-0-10-37-maintain,我的版本是node-0-10-37。MacintoshInstaller(Universal):http://nodejs.org/dist/v0.10.37/node-v0.10.37.pkg点开图标直接下..
分类:Web程序   时间:2015-08-26 20:32:13    阅读次数:323
[LeetCode] Maximum Subarray Sum
Dynamic ProgrammingThere is a nice introduction to the DP algorithm in thisWikipedia article. The idea is to maintain a running maximumsmaxand a curre...
分类:其他好文   时间:2015-08-16 16:22:54    阅读次数:128
[LeetCode] Palindrome Number
The most obvious idea is to maintain two divisors to get the most and least significantdigits and compare them. Well, there are much more clever ideas...
分类:其他好文   时间:2015-08-15 16:15:53    阅读次数:121
[LeetCode] Two Sum
The basic idea is to maintain a hash table for each elementnuminnums, usingnumas key and its index (1-based) as value. For eachnum, search fortarget -...
分类:其他好文   时间:2015-08-15 13:15:53    阅读次数:204
JSBinding + SharpKit / Memory Management (GC)
C# and JavaScript both have Garbage Collection (GC). They should not conflict with each other.Class type objectClass is reference type. We maintain a ...
分类:Web程序   时间:2015-07-30 22:53:16    阅读次数:172
nginx基本介绍(基于官方文档)
nginx has one master process and several worker processes. The main purpose of the master process is to read and evaluate configuration, and maintain worker processes. Worker processes do actual proce...
分类:其他好文   时间:2015-07-24 01:36:31    阅读次数:205
14 Using Indexes and Clusters
do not build indexes unless necessary. 索引是非常占资源的To maintain optimal performance, drop indexes that an application is not using. 不用的索引可以drop掉, 通过toad可以...
分类:其他好文   时间:2015-07-20 10:40:14    阅读次数:135
bzoj1552&3506 robotic sort
这道题提醒了我:1、交之前要删文件2、v不要打成mn3、maintain的位置4、pushdown pushdown pushdown 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #define...
分类:其他好文   时间:2015-07-09 17:53:35    阅读次数:118
[LeetCode] Basic Calculator II
The basic idea of is as follows:Maintain a dequeoperandsfor the numbers and another dequeoperationsfor the operators+, -, *,/`.Scan the expression fro...
分类:其他好文   时间:2015-06-23 00:49:26    阅读次数:113
155条   上一页 1 ... 8 9 10 11 12 ... 16 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!