码迷,mamicode.com
首页 >  
搜索关键字:list add    ( 89211个结果
JDK1.7-LinkedList循环链表优化
最近在看jdk1.7的时候,发现LinkedList 和1.6中的变化。首先,简单介绍一下LinkedList:LinkedList是List接口的双向链表实现。由于是链表结构,所以长度没有限制;而且添加/删除元素的时候,只需要改变指针的指向(把链表断开,插入/删除元素,再把链表连起来)即可,非常方...
分类:其他好文   时间:2014-04-30 00:28:44    阅读次数:442
js冲突
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(//"~/Scripts/modernizr-2.6.2.js", "~/Scripts/jquery-1.8.0....
分类:Web程序   时间:2014-04-29 22:46:01    阅读次数:618
服务器包流程(不断跟新)
----------人物上线----------map----- gs2msData------ gs2ms_add_player(协议消息) PlayerChannel OnPlayerEnter-- data(数据包,初始化playerinfo中信息) 1.add_player有个...
分类:其他好文   时间:2014-04-29 21:06:35    阅读次数:397
ASPNET服务端控件练习(一个机试题)
简单记录:模糊查询的select语句的拼写 public List GetWhereStudent(string name, string sub, string isG) { List lt = new List(); str...
分类:Web程序   时间:2014-04-29 17:17:34    阅读次数:864
spring 拦截器拦截点的配置
实用正则org.springframework.aop.support.RegexpMethodPointcutAdvisor然后 .*_cache.* 表示拦截...
分类:编程语言   时间:2014-04-29 16:25:10    阅读次数:510
中科院随机算法课程(孙晓明主讲)topic list
如题,列出《随机算法》课程的topic list,以记录和供有兴趣的朋友研究。Lession1:生日悖论、生日攻击、两个常用数学工具(马尔科夫不等式、切比雪夫不等式)Lession2:radom quick sort(hw)、矩阵乘法判定、min(max())=max(min())、复杂性类(BPP...
分类:其他好文   时间:2014-04-29 16:16:55    阅读次数:596
Reorder List
两种思路,一种递归的解决T(n) = T(n-2) + O(n);另外一种思路,将后一半的链表原地反转,然后再逐个遍历拼接到前一半的链表上。这种做法能够在O(n)的时间复杂度内完成。
分类:其他好文   时间:2014-04-29 16:06:41    阅读次数:395
A quest for the full InnoDB status
When running InnoDB you are able to dig into the engine internals, look at various gauges and counters, see past deadlocks and the list of all open tr...
分类:数据库   时间:2014-04-29 15:41:04    阅读次数:686
《Cracking the Coding Interview》——第18章:难题——题目1
2014-04-29 00:56题目:不用算数运算,完成加法。解法:那就位运算吧,用加法器的做法就可以了。代码: 1 // 18.1 add two numbers wihout using arithmetic operator. 2 #include 3 using namespace std....
分类:其他好文   时间:2014-04-29 14:58:53    阅读次数:383
《Cracking the Coding Interview》——第18章:难题——题目7
2014-04-29 03:05题目:给定一个词典,其中某些词可能能够通过词典里其他的词拼接而成。找出这样的组合词里最长的一个。解法:Leetcode上有Word Break这道题,和这题基本思路一致。代码: 1 // 18.7 Given a list of words, find out the...
分类:其他好文   时间:2014-04-29 14:30:17    阅读次数:493
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!