ArrayList

 
ArrayList
 System.Collections.ArrayList类是一个特殊的数组。通过添加和删除元素,就可以动态改变数组的长度。
一.优点
1。支持自动改变大小的功能
2。可以灵活的插入元素
3。可以灵活的删除元素
二.局限性
跟一般的数组比起来,速度上差些

 

三.添加元素

1. public virtual int Add(object value);

将对象添加到 ArrayList 的结尾处

ArrayList aList = new ArrayList();

aList.Add("a");

aList.Add("b");

aList.Add("c");

aList.Add("d");

aList.Add("e");

内容为a b c d e

2. public virtual void Insert(int index,object value);

 将元素插入 ArrayList 的指定索引处

ArrayList aList = new ArrayList();

aList.Add("a");

aList.Add("b");

aList.Add("c");

aList.Add("d");

aList.Add("e");

aList.Insert(0,"aa");

结果为aa a b c d e

3. public virtual void InsertRange(int index,ICollection c);

   将集合中的某个元素插入 ArrayList 的指定索引处

 ArrayList aList = new ArrayList();

aList.Add("a");

aList.Add("b");

aList.Add("c");

aList.Add("d");

aList.Add("e");

ArrayList list2 = new ArrayList();

        list2.Add("tt");

list2.Add("ttt");

aList.InsertRange(2,list2);

结果为a b tt ttt c d e

四.删除

a)       public virtual void Remove(object obj);

   从 ArrayList 中移除特定对象的第一个匹配项,注意是第一个

ArrayList aList = new ArrayList();

aList.Add("a");

aList.Add("b");

aList.Add("c");

aList.Add("d");

aList.Add("e");

aList.Remove("a");

结果为b c d e

2. public virtual void RemoveAt(int index);

移除 ArrayList 的指定索引处的元素

aList.Add("a");

aList.Add("b");

aList.Add("c");

aList.Add("d");

aList.Add("e");

aList.RemoveAt(0);

结果为b c d e

 

3. public virtual void RemoveRange(int index,int count);
从 ArrayList 中移除一定范围的元素。
Index表示索引,count表示从索引处开始的数目

aList.Add("a");

aList.Add("b");

aList.Add("c");

aList.Add("d");

aList.Add("e");

aList.RemoveRange(1,3);

结果为a e

4. public virtual void Clear();

从 ArrayList 中移除所有元素。

 

五.排序

a)       public virtual void Sort();

对 ArrayList 或它的一部分中的元素进行排序。

ArrayList aList = new ArrayList();

aList.Add("e");

aList.Add("a");

aList.Add("b");

aList.Add("c");

aList.Add("d");

DropDownList1.DataSource = aList; // DropDownList DropDownList1;

DropDownList1.DataBind();

结果为e a b c d

ArrayList aList = new ArrayList();

aList.Add("a");

aList.Add("b");

aList.Add("c");

aList.Add("d");

aList.Add("e");

aList.Sort(); //排序

DropDownList1.DataSource = aList; // DropDownList DropDownList1;

DropDownList1.DataBind();

结果为a b c d e

b)       public virtual void Reverse();

将 ArrayList 或它的一部分中元素的顺序反转。

ArrayList aList = new ArrayList();

aList.Add("a");

aList.Add("b");

aList.Add("c");

aList.Add("d");

aList.Add("e");

aList.Reverse(); //反转

DropDownList1.DataSource = aList; // DropDownList DropDownList1;

DropDownList1.DataBind();

结果为 e d c b a

六.查找

a)       public virtual int IndexOf(object);

b)       public virtual int IndexOf(object, int);

c)       public virtual int IndexOf(object, int, int);

 返回 ArrayList 或它的一部分中某个值的第一个匹配项的从零开始的索引。没找到返回-1。

ArrayList aList = new ArrayList();

aList.Add("a");

aList.Add("b");

aList.Add("c");

aList.Add("d");

aList.Add("e");

int nIndex = aList.IndexOf(“a”); //1

nIndex = aList.IndexOf(“p”);     //没找到,-1

d)       public virtual int LastIndexOf(object);

e)         public virtual int LastIndexOf(object, int);
f)         public virtual int LastIndexOf(object, int, int);
  返回 ArrayList 或它的一部分中某个值的最后一个匹配项的从零开始的索引。

ArrayList aList = new ArrayList();

aList.Add("a"); 

aList.Add("b");

aList.Add("a"); //同0

aList.Add("d");

aList.Add("e");

int nIndex = aList.LastIndexOf("a"); //值为2而不是0

g)       public virtual bool Contains(object item);

确定某个元素是否在 ArrayList 中。包含返回true,否则返回false

七.其他

1.public virtual int Capacity {get; set;}

获取或设置 ArrayList 可包含的元素数。

2.public virtual int Count {get;}

获取 ArrayList 中实际包含的元素数。

Capacity 是 ArrayList 可以存储的元素数。Count 是 ArrayList 中实际包含的元素数。Capacity 总是大于或等于 Count。如果在添加元素时,Count 超过 Capacity,则该列表的容量会通过自动重新分配内部数组加倍。

如果 Capacity 的值显式设置,则内部数组也需要重新分配以容纳指定的容量。如果 Capacity 被显式设置为 0,则公共语言运行库将其设置为默认容量。默认容量为 16。

在调用Clear后,Count为0,而此时Capacity切是默认容量16,而不是0

 

3.public virtual void TrimToSize();

将容量设置为 ArrayList 中元素的实际数量。

如果不向列表中添加新元素,则此方法可用于最小化列表的内存系统开销。

若要完全清除列表中的所有元素,请在调用 TrimToSize 之前调用 Clear 方法。截去空 ArrayList 会将 ArrayList 的容量设置为默认容量,而不是零。

ArrayList aList = new ArrayList();

aList.Add("a");

aList.Add("b");

aList.Add("c");

aList.Add("d");

aList.Add("e"); //Count = 5,Capacity=16,

aList.TrimToSize(); //Count=Capacity=5;

### ArrayList 的使用方法和特性 #### 存储性能 ArrayList 是基于动态数组实现的列表[^2]。在底层,它使用一个数组来存储元素,并在需要时自动扩容。这种设计使得 ArrayList 在进行按索引访问时性能非常高,但在插入和删除操作上可能表现不如链表。 #### 特性 1. **动态扩容**:ArrayList 在添加新元素时,如果当前数组已满,它会创建一个更大的数组(通常是原大小的 1.5 倍),然后将原数组的元素复制到新数组中。这种机制虽然避免了频繁的扩容,但在进行大批量元素添加时,扩容操作可能导致性能下降。 2. **随机访问**:由于底层使用数组存储ArrayList 支持通过索引直接访问元素,时间复杂度为 O(1),因此非常适合频繁的随机读取操作。 3. **顺序存储**:ArrayList 中元素的存储是连续的数组位置,任何中间位置的插入或删除操作都需要移动元素,因此插入或删除操作的时间复杂度为 O(n)[^2]。 #### 使用场景 ArrayList 非常适合需要频繁随机访问元素的场景,而不适合频繁进行插入和删除操作的场景。 #### 示例用法 以下是一个简单的 ArrayList 使用示例: ```java import java.util.ArrayList; public class ArrayListExample { public static void main(String[] args) { // 创建一个ArrayList ArrayList<String> list = new ArrayList<>(); // 添加元素 list.add("Apple"); list.add("Banana"); list.add("Cherry"); // 访问元素 System.out.println("Element at index 1: " + list.get(1)); // 插入元素 list.add(1, "Apricot"); System.out.println("List after insertion: " + list); // 删除元素 list.remove(2); System.out.println("List after deletion: " + list); // 检查元素是否存在 boolean containsBanana = list.contains("Banana"); System.out.println("List contains 'Banana': " + containsBanana); } } ``` #### 性能分析 - **查找操作**:通过索引访问的时间复杂度为 O(1),因为可以直接定位数组中的位置。 - **插入/删除操作**:在末尾添加元素的时间复杂度为 O(1),但在中间或头部插入/删除元素时,时间复杂度为 O(n),因为需要移动数组中的元素。 - **扩容开销**:当数组容量不够时,ArrayList 需要进行扩容操作,扩容的时间复杂度为 O(n),因为所有元素需要被复制到新的数组中。 #### 线程安全 ArrayList 不是线程安全的。如果需要线程安全的列表,可以使用 Vector 或者使用 Collections.synchronizedList 方法来包装 ArrayList。 ###
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值