码迷,mamicode.com
首页 >  
搜索关键字:implement queue    ( 10759个结果
C#集合类
代码来自互联网,原作者已不可考。ArrayList 使用大小可按需动态增加的数组实现 IList 接口。 BitArray 管理位值的压缩数组,该值表示为布尔值,其中 true 表示位是打开的 (1),false 表示位是关闭的 (0)。 Stack 表示对象的简单的后进先出非泛型集合。Queue ...
分类:其他好文   时间:2014-05-17 00:30:08    阅读次数:208
LeetCode OJ - LRU Cache
题目: Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations:getandset. get(key)- Get ...
分类:其他好文   时间:2014-05-16 05:42:29    阅读次数:280
Hadoop 2.0 Queue
Hadoop 2.0 Queue setting 解析...
分类:其他好文   时间:2014-05-15 05:03:25    阅读次数:544
[LeetCode]String to Integer (atoi)
Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input cases. Notes: It is intended for this problem to be specifi...
分类:其他好文   时间:2014-05-15 05:00:50    阅读次数:229
Call back function implement
Call back function easily implement     #include void HelloWorld(int nIndex) { printf("%d person say Hello World\n",nIndex); } void MyName(int len) { printf...
分类:其他好文   时间:2014-05-15 04:21:05    阅读次数:270
LeetCode 010 Regular Expression Matching
【题目】 Implement regular expression matching with support for '.' and '*'. '.' Matches any single character. '*' Matches zero or more of the preceding element. The matching should cover the entire input string (not partial). The function prototype shoul...
分类:其他好文   时间:2014-05-14 21:36:52    阅读次数:348
LeetCode 008 String to Integer (atoi)
【题目】 Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input cases. Notes: It is intended for this problem to be s...
分类:其他好文   时间:2014-05-14 21:00:57    阅读次数:304
C++ primer 模板与泛型编程
c++ primer 模板与泛型编程 Queue模板的实现...
分类:编程语言   时间:2014-05-14 20:45:26    阅读次数:362
java并发编程之Master-Worker模式
Master-Worker模式适合在一个任务可以拆分成多个小任务来进行的情况下使用。packagecn.fcl.masterworker; importjava.util.HashMap; importjava.util.Map; importjava.util.Queue; importjava.util.concurrent.ConcurrentHashMap; importjava.util.concurrent.ConcurrentLinked..
分类:编程语言   时间:2014-05-14 18:26:04    阅读次数:243
GCD
queue分为两种: serialQueue (串行) 和 concurrentQueue (并行)   serialQueue中的task一个执行不完,另一个不会执行。即:task1执行完毕后,task2执行,task2执行完毕后,task3执行,以此类推   concurrentQueue特点:Queue中的task并发执行,task1现执行(无须执行完毕),task2开始执行之后(无需执...
分类:其他好文   时间:2014-05-13 13:22:25    阅读次数:282
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!