Eclipse3.1版本代号IO【木卫1,伊奥】
Eclipse3.2版本代号Callisto【木卫四,卡里斯托】Eclipse3.3版本代号Eruopa【木卫二,欧罗巴】Eclipse3.4版本代号Ganymede【木卫三,盖尼米德】Eclipse3.5版本代号Galileo【伽利略】
Eclip...
分类:
系统相关 时间:
2014-07-22 23:12:32
阅读次数:
519
Given a sorted linked list, delete all
duplicates such that each element appear onlyonce.For
example,Given1->1->2, return1->2.Given1->1->2->3->3,
retu...
分类:
其他好文 时间:
2014-07-22 23:12:13
阅读次数:
426
原题地址:http://oj.leetcode.com/problems/insertion-sort-list/题意:对链表进行插入排序。解题思路:首先来对插入排序有一个直观的认识,来自维基百科。
代码循环部分图示:代码:class Solution:# @p...
分类:
编程语言 时间:
2014-07-22 23:11:32
阅读次数:
411
颜海镜专注web前端,分享html,css,javascript,jquery等相关原创知识……JavaScript中的this关键字“this”关键字是JavaScript中广泛应用的一种特性,但它经常也是这门语言中最容易混淆和误解的特性。“this”的实际意义是什么?它是如何求值的?本文试图以清...
分类:
编程语言 时间:
2014-07-22 23:10:33
阅读次数:
449
http://blog.csdn.net/humingfiy/article/details/7946408Collection:List、SetMap:HashMap、HashTable如何在它们之间选择一、Array
,ArraysJava所有“存储及随机访问一连串对象”的做法,array是最有...
分类:
其他好文 时间:
2014-07-22 23:08:52
阅读次数:
394
http://mobile.51cto.com/android-259861.htm实现第一点好办,添加一个标志位boolean
bl来控制按钮的Enable状态,实现第二点就是将View.onClickListener添加到List列表中1、MyAdapter.java继承自BaseAdapter...
分类:
其他好文 时间:
2014-07-22 23:07:14
阅读次数:
339
List类Vector和ArrayList的区别:1版本不同,Vector属于jdk1.0,而ArrayList属于jdk1.2后的版本。2,效率上ArrayList比Vector要高,同时vector线程安全,而arraylist线程不安全。ArrayList与LinkedList的区别:1,结构...
分类:
其他好文 时间:
2014-07-22 23:07:12
阅读次数:
237
Linux tar command usageLinux tar command
usageTable of Contents1. Create an archive:2. Create a gzipped archive:3. List
the files in an archive4. Add ...
分类:
系统相关 时间:
2014-05-01 16:16:01
阅读次数:
586
List lst = new List(); lst.Add(new Person("A",
"1")); lst.Add(new Person("C", "2")); lst.Add(new Person("B", "3")); ...