shadow_恶恶

导航

2015年3月5日 #

HashMap与HashTable

摘要: mark 阅读全文

posted @ 2015-03-05 21:44 shadow_恶恶 阅读(94) 评论(0) 推荐(0)

ArrayList与LinkedList用法与区别

摘要: 1.ArrayList是实现了基于动态数组的数据结构,LinkedList基于链表的数据结构。2.对于随机访问get和set,ArrayList觉得优于LinkedList,因为LinkedList要移动指针。3.对于新增和删除操作add和remove,LinedList比较占优势,因为ArrayL... 阅读全文

posted @ 2015-03-05 21:38 shadow_恶恶 阅读(273) 评论(0) 推荐(0)