题目描述
To store English words, one method is to use linked lists and store a word letter by letter. To save some space, we may let the words share the same sublist if they share the same suffix. For...
分类:
其他好文 时间:
2015-06-06 10:37:31
阅读次数:
169
集合操作——线性表List: add()、remove()、subList()、list.toArray()、array.asList()、List排序: Collections.sort(list); Comparable、 comparatorListList接口是Collection的子...
分类:
其他好文 时间:
2015-05-12 10:52:35
阅读次数:
162
(C版)#include #include #define OK 1#define ERROR -1#define status inttypedef struct gnode{int tag;union{char atom;struct gnode *sublist;} val;struct gn...
分类:
其他好文 时间:
2015-04-18 11:24:14
阅读次数:
126
http://hihocoder.com/contest/hiho39/problemsjava.util.*;
Main{
=;
mergSort(List<Long>a,l,r){
mid;
(l<r){
mid=(l+r)/;
(a,l,mid);
(a,mid+,r);
List<Long>b1,b2;
b1=ArrayList<Long>(a.subList(l,mid+));
b2=ArrayList<Long>(a.subList(mid..
分类:
编程语言 时间:
2015-04-02 16:39:09
阅读次数:
160
泛型是JavaSE5 引入的特性,泛型的本质是参数化类型。应用场景:在类,接口和方法的定义过程中,所操作的数据类型被传入的参数指定。
例如在ArrayList类的定义中,中的E为泛型参数,在创建对象是可以将类型作为参数传递,此时定义中的所有E将被替换为传入的参数;...
分类:
编程语言 时间:
2015-03-11 10:54:42
阅读次数:
197
我们经常使用subString方法来对String对象进行分割处理,同时我们也可以使用subList、subMap、subSet来对List、Map、Set进行分割处理,但是这个分割存在某些瑕疵。一、subList返回仅仅只是一个视图 首先我们先看如下实例:public static void main(String[] args) {
List list1 = new...
分类:
编程语言 时间:
2015-03-06 19:07:22
阅读次数:
185
To store English words, one method is to use linked lists and store a word letter by letter. To save some space, we may let the words share the same sublist if they share the same suffix. For example,...
分类:
其他好文 时间:
2015-03-03 18:41:39
阅读次数:
140
一. 切片
a切片操作和java中的subList类似,就是获取一个子列表
比如L=['zhangsan','lisi','wangwu'] 那么L[0, 2]表示从索引0开始取,直到索引2(不含2), 正好2个元素
如果第一个索引为0, 还可以省略.
下面我们创建一个0-99的数列: L = range(100)
1. 获取前10个数: L[:10]
2. 获取后10个数: L[-1...
分类:
编程语言 时间:
2015-01-29 19:38:50
阅读次数:
197
List集合存储的元素是有序的,可重复的,有索引
List特有方法:
增加
add(index, element);
addAll(index, Collection);
删除
remove(index);
修改
set(index, element);
查找
get(index);
subList...
分类:
其他好文 时间:
2014-09-13 22:46:06
阅读次数:
196
2:列表(List)
特点:
(1):有序的(插入的顺序有序),元素有索引值。
(2):允许重复。
set/get/listIterator/subList
ArrayList
特点:(1):底层数组方式实现。
(2):元素是有序的。(是指添加进去的元素有序,不是指对象之间的顺序)
(3):不是线程...
分类:
其他好文 时间:
2014-08-07 07:15:49
阅读次数:
239