码迷,mamicode.com
首页 >  
搜索关键字:garbage collection    ( 6557个结果
[LeetCode]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.The solution set must not contain dupli...
分类:其他好文   时间:2014-11-19 01:33:20    阅读次数:217
LeetCode——Combination 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 number in C may only be used once in the combina...
分类:其他好文   时间:2014-11-18 16:02:52    阅读次数:247
[翻译]在objective c创建自定义collection view样式
## 创建自定义collection样式 苹果在ios6中新增了一个更加易于创建和管理复杂用户界面的类:collection view。在此之前ios6上面用于展示多项列表的是table view,虽然名称是表格但它展示信息的形式并不是表格形式...
分类:其他好文   时间:2014-11-17 19:49:29    阅读次数:254
MongoDB基本管理命令
MongoDB是一个NoSQL数据库系统:一个数据库可以包含多个集合(Collection),每个集合对应于关系数据库中的表;而每个集合中 可以存储一组由列标识的记录,列是可以自由定义的,非常灵活,由一组列标识的实体的集合对应于关系数据库表中的行。下面通过熟悉MongoDB的基本管理 命令,来了解M...
分类:数据库   时间:2014-11-17 15:46:13    阅读次数:413
leetcode. Permutations && Permutations II
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-16 13:20:10    阅读次数:154
java容器总结
容器归纳I. collection 容器 高层次接口set 与 list 继承collection 接口 两者不同是set:元素 无序且不可重复 常用实现类 hashsetlist:元素 有序 且可以重复 常用实现类 linkedlist,arraylist,vector 三者特点解释 线程安全如果...
分类:编程语言   时间:2014-11-16 09:17:22    阅读次数:148
Leetcode-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-16 07:07:37    阅读次数:141
有关GNU GCC的基本内容整理
一、GCC简介 GCC(GNU Compiler Collection,GNU编译器集合)是一套由GNU工程开发的支持多种编程语言的编译器。GCC是自由软件发展过程中的著名例子,由自由软件基金会 以GPL协议发布。当年Richard Stallman 刚开始写作 GCC 的时候,还只是把它当作仅仅一...
分类:其他好文   时间:2014-11-16 01:51:39    阅读次数:259
Collection、Iterator、Set、HashSet
Collection接口的基本方法boolean add(Object o)向集合当中加入一个对象void clear()删除集合当中的所有对象boolean isEmpty()判断集合是否为空remove(Object o)从集合中删除一个对象的引用int size()返回集合中元素的数目Set接...
分类:其他好文   时间:2014-11-15 23:11:04    阅读次数:278
JAVA的容器---List,Map,Set (转)
JAVA的容器---List,Map,SetCollection├List│├LinkedList│├ArrayList│└Vector│ └Stack└SetMap├Hashtable├HashMap└WeakHashMapCollection是最基本的集合接口,一个Collection代表一组O...
分类:编程语言   时间:2014-11-15 10:05:11    阅读次数:174
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!