Java 数据结构

https://www.runoob.com/java/java-data-structures.html
Java工具包提供了强大的数据结构。在Java中的数据结构主要包括以下几种接口和类:

  • 枚举(Enumeration)
  • 位集合(BitSet)略
  • 向量(Vector)
  • 栈(Stack)
  • 字典(Dictionary)已过时
  • 哈希表(Hashtable) 与HashMap类很相似,但是它支持同步,略
  • 属性(Properties)

属性 Properties类

Properties 继承于 Hashtable.表示一个持久的属性集.属性列表中每个键及其对应值都是一个字符串。
Properties 类被许多Java类使用。例如,在获取环境变量时它就作为System.getProperties()方法的返回值。

序号 方法描述
1 String getProperty(String key)
用指定的键在此属性列表中搜索属性。
2 String getProperty(String key, String defaultProperty)
用指定的键在属性列表中搜索属性。
3 void list(PrintStream streamOut)
将属性列表输出到指定的输出流。
4 void list(PrintWriter streamOut)
将属性列表输出到指定的输出流。
5 void load(InputStream streamIn) throws IOException
从输入流中读取属性列表(键和元素对)。
6 Enumeration propertyNames( )
按简单的面向行的格式从输入字符流中读取属性列表(键和元素对)。
7 Object setProperty(String key, String value)
调用 Hashtable 的方法 put。
8 void store(OutputStream streamOut, String description)
以适合使用 load(InputStream)方法加载到 Properties 表中的格式,将此 Properties 表中的属性列表(键和元素对)写入输出流。
  1. import java.util.*;
  2. public class PropDemo {
  3. public static void main(String args[]) {
  4. Properties capitals = new Properties();
  5. Set states;
  6. String str;
  7. capitals.put("Illinois", "Springfield");
  8. capitals.put("Missouri", "Jefferson City");
  9. capitals.put("Washington", "Olympia");
  10. capitals.put("California", "Sacramento");
  11. capitals.put("Indiana", "Indianapolis");
  12. // Show all states and capitals in hashtable.
  13. states = capitals.keySet(); // get set-view of keys
  14. Iterator itr = states.iterator();
  15. while(itr.hasNext()) {
  16. str = (String) itr.next();
  17. System.out.println("The capital of " +
  18. str + " is " + capitals.getProperty(str) + ".");
  19. }
  20. System.out.println();
  21. // look for state not in list -- specify default
  22. str = capitals.getProperty("Florida", "Not Found");
  23. System.out.println("The capital of Florida is "
  24. + str + ".");
  25. }
  26. }
  27. The capital of Missouri is Jefferson City.
  28. The capital of Illinois is Springfield.
  29. The capital of Indiana is Indianapolis.
  30. The capital of California is Sacramento.
  31. The capital of Washington is Olympia.
  32. The capital of Florida is Not Found.
  1. // redis.properties
  2. redis.MaxTotal=50
  3. redis.MinIdle=10
  4. redis.MaxIdle=30
  5. redis.host=127.0.0.1
  6. redis.port=6379

向量

Vector 类实现了一个动态数组。和 ArrayList 很相似,但是两者是不同的:

  • Vector 是同步访问的。
  • Vector 包含了许多传统的方法,这些方法不属于集合框架。

Vector 主要用在事先不知道数组的大小,或者只是需要一个可以改变大小的数组的情况。

  1. import java.util.Vector;
  2. public class VectorDemo {
  3. public static void main(String args[]) {
  4. Vector v1 = new Vector(); // 创建一个Vector 默认长度为10
  5. Vector v2 = new Vector(10); // 默认为10
  6. Vector v3 = new Vector(10, 10); // 默认为10,每次增量10
  7. // Vector v4 = new Vector(Collection c); // Collection表示集合,list,map
  8. }
  9. }
序号 方法描述
1 void add(int index, Object element)
在此向量的指定位置插入指定的元素。
2 boolean add(Object o)
将指定元素添加到此向量的末尾。
3 boolean addAll(Collection c)
将指定 Collection 中的所有元素添加到此向量的末尾,按照指定 collection 的迭代器所返回的顺序添加这些元素。
4 boolean addAll(int index, Collection c)
在指定位置将指定 Collection 中的所有元素插入到此向量中。
5 void addElement(Object obj)
将指定的组件添加到此向量的末尾,将其大小增加 1。
6 int capacity()
返回此向量的当前容量。
7 void clear()
从此向量中移除所有元素。
8 Object clone()
返回向量的一个副本。
9 boolean contains(Object elem)
如果此向量包含指定的元素,则返回 true。
10 boolean containsAll(Collection c)
如果此向量包含指定 Collection 中的所有元素,则返回 true。
11 void copyInto(Object[] anArray)
将此向量的组件复制到指定的数组中。
12 Object elementAt(int index)
返回指定索引处的组件。
13 Enumeration elements()
返回此向量的组件的枚举。
14 void ensureCapacity(int minCapacity)
增加此向量的容量(如有必要),以确保其至少能够保存最小容量参数指定的组件数。
15 boolean equals(Object o)
比较指定对象与此向量的相等性。
16 Object firstElement()
返回此向量的第一个组件(位于索引 0) 处的项)。
17 Object get(int index)
返回向量中指定位置的元素。
18 int hashCode()
返回此向量的哈希码值。
19 int indexOf(Object elem)
返回此向量中第一次出现的指定元素的索引,如果此向量不包含该元素,则返回 -1。
20 int indexOf(Object elem, int index)
返回此向量中第一次出现的指定元素的索引,从 index 处正向搜索,如果未找到该元素,则返回 -1。
21 void insertElementAt(Object obj, int index)
将指定对象作为此向量中的组件插入到指定的 index 处。
22 boolean isEmpty()
测试此向量是否不包含组件。
23 Object lastElement()
返回此向量的最后一个组件。
24 int lastIndexOf(Object elem)
返回此向量中最后一次出现的指定元素的索引;如果此向量不包含该元素,则返回 -1。
25 int lastIndexOf(Object elem, int index)
返回此向量中最后一次出现的指定元素的索引,从 index 处逆向搜索,如果未找到该元素,则返回 -1。
26 Object remove(int index)
移除此向量中指定位置的元素。
27 boolean remove(Object o)
移除此向量中指定元素的第一个匹配项,如果向量不包含该元素,则元素保持不变。
28 boolean removeAll(Collection c)
从此向量中移除包含在指定 Collection 中的所有元素。
29 void removeAllElements()
从此向量中移除全部组件,并将其大小设置为零。
30 boolean removeElement(Object obj)
从此向量中移除变量的第一个(索引最小的)匹配项。
31 void removeElementAt(int index)
删除指定索引处的组件。
32 protected void removeRange(int fromIndex, int toIndex)
从此 List 中移除其索引位于 fromIndex(包括)与 toIndex(不包括)之间的所有元素。
33 boolean retainAll(Collection c)
在此向量中仅保留包含在指定 Collection 中的元素。
34 Object set(int index, Object element)
用指定的元素替换此向量中指定位置处的元素。
35 void setElementAt(Object obj, int index)
将此向量指定 index 处的组件设置为指定的对象。
36 void setSize(int newSize)
设置此向量的大小。
37 int size()
返回此向量中的组件数。
38 List subList(int fromIndex, int toIndex)
返回此 List 的部分视图,元素范围为从 fromIndex(包括)到 toIndex(不包括)。
39 Object[] toArray()
返回一个数组,包含此向量中以恰当顺序存放的所有元素。
40 Object[] toArray(Object[] a)
返回一个数组,包含此向量中以恰当顺序存放的所有元素;返回数组的运行时类型为指定数组的类型。
41 String toString()
返回此向量的字符串表示形式,其中包含每个元素的 String 表示形式。
42 void trimToSize()
对此向量的容量进行微调,使其等于向量的当前大小。

枚举

  1. import java.util.Vector;
  2. import java.util.Enumeration;
  3. public class EnumerationTester {
  4. public static void main(String args[]) {
  5. Enumeration<String> days;
  6. Vector<String> dayNames = new Vector<String>();
  7. dayNames.add("Sunday");
  8. dayNames.add("Monday");
  9. dayNames.add("Tuesday");
  10. dayNames.add("Wednesday");
  11. dayNames.add("Thursday");
  12. dayNames.add("Friday");
  13. dayNames.add("Saturday");
  14. days = dayNames.elements();
  15. while (days.hasMoreElements()){
  16. System.out.println(days.nextElement());
  17. }
  18. }
  19. }
序号 方法描述
1 boolean hasMoreElements( )
测试此枚举是否包含更多的元素。
2 Object nextElement( )
如果此枚举对象至少还有一个可提供的元素,则返回此枚举的下一个元素。

栈 Stack 类

栈是Vector的一个子类,它实现了一个标准的后进先出的栈。
堆栈只定义了默认构造函数,用来创建一个空栈。 堆栈除了包括由Vector定义的所有方法,也定义了自己的一些方法。
Stack()
除了由Vector定义的所有方法,自己也定义了一些方法:

序号 方法描述
1 boolean empty()
测试堆栈是否为空。
2 Object peek( )
查看堆栈顶部的对象,但不从堆栈中移除它。
3 Object pop( )
移除堆栈顶部的对象,并作为此函数的值返回该对象。
4 Object push(Object element)
把项压入堆栈顶部。
5 int search(Object element)
返回对象在堆栈中的位置,以 1 为基数。
  1. import java.util.*;
  2. public class StackDemo {
  3. static void showpush(Stack<Integer> st, int a) {
  4. st.push(new Integer(a));
  5. System.out.println("push(" + a + ")");
  6. System.out.println("stack: " + st);
  7. }
  8. static void showpop(Stack<Integer> st) {
  9. System.out.print("pop -> ");
  10. Integer a = (Integer) st.pop();
  11. System.out.println(a);
  12. System.out.println("stack: " + st);
  13. }
  14. public static void main(String args[]) {
  15. Stack<Integer> st = new Stack<Integer>();
  16. System.out.println("stack: " + st);
  17. showpush(st, 42);
  18. showpush(st, 66);
  19. showpush(st, 99);
  20. showpop(st);
  21. showpop(st);
  22. showpop(st);
  23. try {
  24. showpop(st);
  25. } catch (EmptyStackException e) {
  26. System.out.println("empty stack");
  27. }
  28. }
  29. }
  30. /*
  31. stack: [ ]
  32. push(42)
  33. stack: [42]
  34. push(66)
  35. stack: [42, 66]
  36. push(99)
  37. stack: [42, 66, 99]
  38. pop -> 99
  39. stack: [42, 66]
  40. pop -> 66
  41. stack: [42]
  42. pop -> 42
  43. stack: [ ]
  44. pop -> empty stack
  45. */