[ 113.180820] sgs->group_load:2039,sum_nr_running:2,sum_weighted_load:2039,sgs->group_capacity:1024, avg_load:2039,group_weight:1 [ 113.181144] sgs->g... ...
分类:
其他好文 时间:
2017-08-03 23:40:20
阅读次数:
278
2017-07-29 12:59:14 一、简介 1、Vector继承关系 2、Vector类扩容 Vector类的实现和ArrayList极其相似,都使用数组存储元素,但是扩容策略不一样,ArrayList基本是按照1.5倍的思路扩容,Vector是按照创建Vector对象时设置的capacity ...
分类:
编程语言 时间:
2017-07-29 15:25:29
阅读次数:
267
hashTable 的一些认识: 构造函数 ...
分类:
其他好文 时间:
2017-07-28 17:13:35
阅读次数:
132
转载自 http://zhangshixi.iteye.com/blog/673789 1. LinkedHashMap概述: LinkedHashMap是Map接口的哈希表和链接列表实现,具有可预知的迭代顺序。此实现提供所有可选的映射操作,并允许使用null值和null键。此类不保证映射的顺序,特 ...
分类:
其他好文 时间:
2017-07-28 16:43:13
阅读次数:
166
public class MyArrayList { private int capacity = 10; private int size = 0; private E[] values = null; @SuppressWarnings("unchecked") public MyArrayLi... ...
分类:
编程语言 时间:
2017-07-28 15:47:34
阅读次数:
219
键值对想到hashmap, 增删节点考虑链表, + 头尾节点, 因此要构造相应的类 ...
分类:
系统相关 时间:
2017-07-26 23:40:53
阅读次数:
246
static final int DEFAULT_INITIAL_CAPACITY = 16;// 默认初始容量为16,必须为2的幂 static final int MAXIMUM_CAPACITY = 1 << 30;// 最大容量为2的30次方 static final float DEFAU ...
分类:
其他好文 时间:
2017-07-25 22:40:50
阅读次数:
162
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 10 11 class StrVec 12 { 13 friend std::ostream &operator all... ...
分类:
编程语言 时间:
2017-07-23 14:32:15
阅读次数:
270
void clear():删除存储在vector中的所有元素 一、 1.如果vector的元素是一些object,则它将为当前存储的每个元素调用它们各自的析构函数。 2.如果vector存储的是指向对象的指针,此函数并不会调用到对应的析构函数。会造成内存泄漏。想要删除vector中的元素则应遍历ve ...
分类:
其他好文 时间:
2017-07-20 10:27:05
阅读次数:
340
A chain is no stronger than its weakest link. 链条的坚固程度取决于它最薄弱的环节。 The same as the well-known buckets effects, that is, the capacity of a bucket depends ...
分类:
其他好文 时间:
2017-07-16 18:30:50
阅读次数:
165