码迷,mamicode.com
首页 >  
搜索关键字:garbage collection    ( 6557个结果
collection框架
集合框架(Collection Framework)泛指java.util包的若干个类和接口.如Collection,List,ArrayList,LinkedList,Vector(自动增长数组),HashSet,HashMap等.集合框架中的类主要封装的是典型的数据结构,如动态数组,链表,堆栈,...
分类:其他好文   时间:2014-11-22 15:53:39    阅读次数:193
访问者(Visitor)模式
http://www.cnblogs.com/zhenyulu/articles/79719.html一、访问者(Visitor)模式访问者模式的目的是封装一些施加于某种数据结构元素之上的操作。一旦这些操作需要修改的话,接受这个操作的数据结构则可以保持不变。问题提出System.Collection...
分类:其他好文   时间:2014-11-22 11:53:34    阅读次数:248
SharePoint Search之(八) 搜索中心站点
创建完Search Service Application之后,虽然在各个site都可以进行搜索,但是设置一个Search Center来集中处理请求还是很有必要的。Search Center提供了Farm缺省的搜索设置,可以供其他site使用。在Site Collection和Site级别,都可以通过配置Site Settings来把搜索请求提交到search center上 。...
分类:其他好文   时间:2014-11-22 09:21:07    阅读次数:271
Permutations 全排列 回溯
Given a collection of numbers, return all possible permutations.For example,[1,2,3]have the following permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:其他好文   时间:2014-11-22 00:37:46    阅读次数:186
c++ simple "Garbage Collector"
The idea is to create a Ptr type that acts like a reference in Java.And A Garbage Collector (MemMgr) type that acts like a garbage collector in Java.J...
分类:编程语言   时间:2014-11-21 23:12:56    阅读次数:421
Permutations
Given a collection of numbers, return all possible permutations.For example,[1,2,3]have the following permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:其他好文   时间:2014-11-21 14:12:24    阅读次数:119
Subsets II
Given a collection of integers that might contain duplicates,S, return all possible subsets.Note:Elements in a subset must be in non-descending order....
分类:其他好文   时间:2014-11-21 14:03:57    阅读次数:160
C# 理解泛型
出处:http://www.tracefact.net/CSharp-Programming/Generics-In-CSharp.aspx术语表generics:泛型type-safe:类型安全collection: 集合compiler:编译器run time:程序运行时object: 对象.N...
分类:Windows程序   时间:2014-11-21 14:00:32    阅读次数:305
Leetcode-Combinations Sum II
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.Each numb...
分类:其他好文   时间:2014-11-21 06:57:39    阅读次数:184
Leetcode-Permutations
Given a collection of numbers, return all possible permutations. For example,[1,2,3] have the following permutations:[1,2,3], [1,3,2], [2,1,3], [2,3,1...
分类:其他好文   时间:2014-11-21 01:19:50    阅读次数:189
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!