|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.util.Collections
The documentation for the polymorphic algorithms contained in this class generally includes a brief description of the implementation. Such descriptions should be regarded as implementation notes, rather than parts of the specification. Implementors should feel free to substitute other algorithms, so long as the specification itself is adhered to. (For example, the algorithm used by sort does not have to be a mergesort, but it does have to be stable.)
Field Summary | |
static java.util.List | EMPTY_LIST
The empty list (immutable). |
static java.util.Map | EMPTY_MAP
The empty map (immutable). |
static java.util.Set | EMPTY_SET
The empty set (immutable). |
Method Summary | |
static <S,T> void | copy(java.util.List<S>
dest, java.util.List<T> src)
Copies all of the elements from one list into another. |
static <T,S> java.util.Map<T,S> | singletonMap(T
key, S value)
Returns an immutable map, mapping only the specified key to the specified value. |
static <T,S> java.util.Map<T,S> | synchronizedMap(java.util.Map<T,S>
m)
Returns a synchronized (thread-safe) map backed by the specified map. |
static <T,S> java.util.SortedMap<T,S> | synchronizedSortedMap(java.util.SortedMap<T,S>
m)
Returns a synchronized (thread-safe) sorted map backed by the specified sorted map. |
static <T,S> java.util.Map<T,S> | unmodifiableMap(java.util.Map<T,S>
m)
Returns an unmodifiable view of the specified map. |
static java.util.SortedMap<T,S> | unmodifiableSortedMap(java.util.SortedMap<T,S>
m)
Returns an unmodifiable view of the specified sorted map. |
static <T> int | binarySearch(java.util.List<T>
list, T key, java.util.Comparator<T> c)
Searches the specified list for the specified object using the binary search algorithm. |
static <T> java.util.Enumeration<T> | enumeration(java.util.Collection<T>
c)
Returns an enumeration over the specified collection. |
static <T> void | fill(java.util.List<T>
list, T obj)
Replaces all of the elements of the specified list with the specified element. |
static <T extends Comparable<T>> int | iteratorBinarySearch(java.util.List<T> list, T key) |
static <T> int | iteratorBinarySearch(java.util.List<T> l, T key, java.util.Comparator<T> c) |
static <T> java.util.List<T> | list(java.util.Enumeration<T>
e)
Returns an array list containing the elements returned by the specified enumeration in the order they are returned by the enumeration. |
static <T extends Comparable<T>> T | max(java.util.Collection<T>
coll)
Returns the maximum element of the given collection, according to the natural ordering of its elements. |
static <T> T | max(java.util.Collection<T>
coll, java.util.Comparator<T> comp)
Returns the maximum element of the given collection, according to the order induced by the specified comparator. |
static <T extends Comparable<T>> T | min(java.util.Collection<T>
coll)
Returns the minimum element of the given collection, according to the natural ordering of its elements. |
static <T> T | min(java.util.Collection<T>
coll, java.util.Comparator<T> comp)
Returns the minimum element of the given collection, according to the order induced by the specified comparator. |
static <T> java.util.List<T> | nCopies(int
n, T o)
Returns an immutable list consisting of n copies of the specified object. |
static <T> boolean | replaceAll(java.util.List<T>
list, T oldVal, T newVal)
Replaces all occurrences of one specified value in a list with another. |
static <T> void | reverse(java.util.List<T>
list)
Reverses the order of the elements in the specified list. |
static <T> void | rotate(java.util.List<T>
list, int distance)
Rotates the elements in the specified list by the specified distance. |
static <T> void | shuffle(java.util.List<T>
list)
Randomly permutes the specified list using a default source of randomness. |
static <T> void | shuffle(java.util.List<T>
list, java.util.Random rnd)
Randomly permute the specified list using the specified source of randomness. |
static <T> java.util.List<T> | singletonList(T
o)
Returns an immutable list containing only the specified object. |
static <T> void | sort(java.util.List<T>
list)
Sorts the specified list into ascending order, according to the natural ordering of its elements. |
static <T> void | sort(java.util.List<T>
list, java.util.Comparator<T> c)
Sorts the specified list according to the order induced by the specified comparator. |
static <T> void | swap(java.util.List<T>
list, int i, int j)
Swaps the elements at the specified positions in the specified list. |
static <T> java.util.Collection<T> | synchronizedCollection(java.util.Collection<T>
c)
Returns a synchronized (thread-safe) collection backed by the specified collection. |
static <T> java.util.List<T> | synchronizedList(java.util.List<T>
list)
Returns a synchronized (thread-safe) list backed by the specified list. |
static <T> java.util.Set<T> | synchronizedSet(java.util.Set<T>
s)
Returns a synchronized (thread-safe) set backed by the specified set. |
static <T> java.util.SortedSet<T> | synchronizedSortedSet(java.util.SortedSet<T>
s)
Returns a synchronized (thread-safe) sorted set backed by the specified sorted set. |
static <T> java.util.List<T> | unmodifiableList(java.util.List<T>
list)
Returns an unmodifiable view of the specified list. |
static <T> java.util.Set<T> | unmodifiableSet(java.util.Set<T>
s)
Returns an unmodifiable view of the specified set. |
static <T> java.util.SortedSet<T> | unmodifiableSortedSet(java.util.SortedSet<T>
s)
Returns an unmodifiable view of the specified sorted set. |
static <T extends Comparable<T>> int | binarySearch(java.util.List<T>
list, T key)
Searches the specified list for the specified object using the binary search algorithm. |
static <T,S> int | indexOfSubList(java.util.List<S>
source, java.util.List<T> target)
Returns the starting position of the first occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence. |
static <T,S> int | lastIndexOfSubList(java.util.List<S>
source, java.util.List<T> target)
Returns the starting position of the last occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence. |
static <T extends java.lang.Comparable<T>> java.util.Comparator<T> | reverseOrder()
Returns a comparator that imposes the reverse of the natural ordering on a collection of objects that implement the Comparable interface. |
static <T> java.util.Set<T> | singleton(T
o)
Returns an immutable set containing only the specified object. |
static <T> java.util.Collection | unmodifiableCollection(java.util.Collection<T>
c)
Returns an unmodifiable view of the specified collection. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final java.util.Set EMPTY_SET
public static final java.util.List EMPTY_LIST
public static final java.util.Map EMPTY_MAP
Method Detail |
public static <T> void sort(java.util.List<T> list)
This sort is guaranteed to be stable: equal elements will not be reordered as a result of the sort.
The specified list must be modifiable, but need not be resizable.
The sorting algorithm is a modified mergesort (in which the merge is omitted if the highest element in the low sublist is less than the lowest element in the high sublist). This algorithm offers guaranteed n log(n) performance, and can approach linear performance on nearly sorted lists.
This implementation dumps the specified list into an array, sorts the array, and iterates over the list resetting each element from the corresponding position in the array. This avoids the n2 log(n) performance that would result from attempting to sort a linked list in place.
public static <T> void sort(java.util.List<T> list, java.util.Comparator<T> c)
This sort is guaranteed to be stable: equal elements will not be reordered as a result of the sort.
The sorting algorithm is a modified mergesort (in which the merge is omitted if the highest element in the low sublist is less than the lowest element in the high sublist). This algorithm offers guaranteed n log(n) performance, and can approach linear performance on nearly sorted lists.
The specified list must be modifiable, but need not be resizable. This implementation dumps the specified list into an array, sorts the array, and iterates over the list resetting each element from the corresponding position in the array. This avoids the n2 log(n) performance that would result from attempting to sort a linked list in place.
public static <T extends Comparable<T>> int binarySearch(java.util.List<T> list, T key)
This method runs in log(n) time for a "random access" list (which provides near-constant-time positional access). If the specified list does not implement the RandomAccess and is large, this method will do an iterator-based binary search that performs O(n) link traversals and O(log n) element comparisons.
public static <T extends Comparable<T>> int iteratorBinarySearch(java.util.List<T> list, T key)
public static <T> int binarySearch(java.util.List<T> list, T key, java.util.Comparator<T> c)
This method runs in log(n) time for a "random access" list (which provides near-constant-time positional access). If the specified list does not implement the RandomAccess and is large, this this method will do an iterator-based binary search that performs O(n) link traversals and O(log n) element comparisons.
public static <T> int iteratorBinarySearch(java.util.List<T> l, T key, java.util.Comparator<T> c)
public static <T> void reverse(java.util.List<T> list)
This method runs in linear time.
public static <T> void shuffle(java.util.List<T> list)
The hedge "approximately" is used in the foregoing description because default source of randomenss is only approximately an unbiased source of independently chosen bits. If it were a perfect source of randomly chosen bits, then the algorithm would choose permutations with perfect uniformity.
This implementation traverses the list backwards, from the last element up to the second, repeatedly swapping a randomly selected element into the "current position". Elements are randomly selected from the portion of the list that runs from the first element to the current position, inclusive.
This method runs in linear time. If the specified list does not implement the RandomAccess interface and is large, this implementation dumps the specified list into an array before shuffling it, and dumps the shuffled array back into the list. This avoids the quadratic behavior that would result from shuffling a "sequential access" list in place.
public static <T> void shuffle(java.util.List<T> list, java.util.Random rnd)
This implementation traverses the list backwards, from the last element up to the second, repeatedly swapping a randomly selected element into the "current position". Elements are randomly selected from the portion of the list that runs from the first element to the current position, inclusive.
This method runs in linear time. If the specified list does not implement the RandomAccess interface and is large, this implementation dumps the specified list into an array before shuffling it, and dumps the shuffled array back into the list. This avoids the quadratic behavior that would result from shuffling a "sequential access" list in place.
public static <T> void swap(java.util.List<T> list, int i, int j)
public static <T> void fill(java.util.List<T> list, T obj)
This method runs in linear time.
public static <S,T> void copy(java.util.List<S> dest, java.util.List<T> src)
This method runs in linear time.
public static <T extends Comparable<T>> T min(java.util.Collection<T> coll)
This method iterates over the entire collection, hence it requires time proportional to the size of the collection.
public static <T> T min(java.util.Collection<T> coll, java.util.Comparator<T> comp)
This method iterates over the entire collection, hence it requires time proportional to the size of the collection.
public static <T extends Comparable<T>> T max(java.util.Collection<T> coll)
This method iterates over the entire collection, hence it requires time proportional to the size of the collection.
public static <T> T max(java.util.Collection<T> coll, java.util.Comparator<T> comp)
This method iterates over the entire collection, hence it requires time proportional to the size of the collection.
public static <T> void rotate(java.util.List<T> list, int distance)
For example, suppose list comprises[t, a, n, k, s]. After invoking Collections.rotate(list, 4) (or Collections.rotate(list, -1)), list will comprise [s, t, a, n, k].
Note that this method can usefully be applied to sublists to move one or more elements within a list while preserving the order of the remaining elements. For example, the following idiom moves the element at index j forward to position k (which must be greater than or equal to j):
Collections.rotate(list.subList(j, k+1), -1);To make this concrete, suppose list comprises [a, b, c, d, e]. To move the element at index 1 (b) forward two positions, perform the following invocation:
Collections.rotate(l.subList(1, 4), -1);The resulting list is [a, c, d, b, e].
To move more than one element forward, increase the absolute value of the rotation distance. To move elements backward, use a positive shift distance.
If the specified list is small or implements the RandomAccess interface, this implementation exchanges the first element into the location it should go, and then repeatedly exchanges the displaced element into the location it should go until a displaced element is swapped into the first element. If necessary, the process is repeated on the second and successive elements, until the rotation is complete. If the specified list is large and doesn't implement the RandomAccess interface, this implementation breaks the list into two sublist views around index -distance mod size. Then the #reverse(List) method is invoked on each sublist view, and finally it is invoked on the entire list. For a more complete description of both algorithms, see Section 2.3 of Jon Bentley's Programming Pearls (Addison-Wesley, 1986).
public static <T> boolean replaceAll(java.util.List<T> list, T oldVal, T newVal)
public static <T,S> int indexOfSubList(java.util.List<S> source, java.util.List<T> target)
This implementation uses the "brute force" technique of scanning over the source list, looking for a match with the target at each location in turn.
public static <T,S> int lastIndexOfSubList(java.util.List<S> source, java.util.List<T> target)
This implementation uses the "brute force" technique of iterating over the source list, looking for a match with the target at each location in turn.
public static <T> java.util.Collection unmodifiableCollection(java.util.Collection<T> c)
The returned collection does not pass the hashCode and equals operations through to the backing collection, but relies on Object's equals and hashCode methods. This is necessary to preserve the contracts of these operations in the case that the backing collection is a set or a list.
The returned collection will be serializable if the specified collection is serializable.
public static <T> java.util.Set<T> unmodifiableSet(java.util.Set<T> s)
The returned set will be serializable if the specified set is serializable.
public static <T> java.util.SortedSet<T> unmodifiableSortedSet(java.util.SortedSet<T> s)
The returned sorted set will be serializable if the specified sorted set is serializable.
public static <T> java.util.List<T> unmodifiableList(java.util.List<T> list)
The returned list will be serializable if the specified list is serializable. Similarly, the returned list will implement RandomAccess if the specified list does. the
public static <T,S> java.util.Map<T,S> unmodifiableMap(java.util.Map<T,S> m)
The returned map will be serializable if the specified map is serializable.
public static <T,S> java.util.SortedMap<T,S> unmodifiableSortedMap(java.util.SortedMap<T,S> m)
The returned sorted map will be serializable if the specified sorted map is serializable.
public static <T> java.util.Collection<T> synchronizedCollection(java.util.Collection<T> c)
It is imperative that the user manually synchronize on the returned collection when iterating over it:
Collection c = Collections.synchronizedCollection(myCollection); ... synchronized(c) { Iterator i = c.iterator(); // Must be in the synchronized block while (i.hasNext()) foo(i.next()); }Failure to follow this advice may result in non-deterministic behavior.
The returned collection does not pass the hashCode and equals operations through to the backing collection, but relies on Object's equals and hashCode methods. This is necessary to preserve the contracts of these operations in the case that the backing collection is a set or a list.
The returned collection will be serializable if the specified collection is serializable.
public static <T> java.util.Set<T> synchronizedSet(java.util.Set<T> s)
It is imperative that the user manually synchronize on the returned set when iterating over it:
Set s = Collections.synchronizedSet(new HashSet()); ... synchronized(s) { Iterator i = s.iterator(); // Must be in the synchronized block while (i.hasNext()) foo(i.next()); }Failure to follow this advice may result in non-deterministic behavior.
The returned set will be serializable if the specified set is serializable.
public static <T> java.util.SortedSet<T> synchronizedSortedSet(java.util.SortedSet<T> s)
It is imperative that the user manually synchronize on the returned sorted set when iterating over it or any of its subSet, headSet, or tailSet views.
SortedSet s = Collections.synchronizedSortedSet(new HashSortedSet()); ... synchronized(s) { Iterator i = s.iterator(); // Must be in the synchronized block while (i.hasNext()) foo(i.next()); }or:
SortedSet s = Collections.synchronizedSortedSet(new HashSortedSet()); SortedSet s2 = s.headSet(foo); ... synchronized(s) { // Note: s, not s2!!! Iterator i = s2.iterator(); // Must be in the synchronized block while (i.hasNext()) foo(i.next()); }Failure to follow this advice may result in non-deterministic behavior.
The returned sorted set will be serializable if the specified sorted set is serializable.
public static <T> java.util.List<T> synchronizedList(java.util.List<T> list)
It is imperative that the user manually synchronize on the returned list when iterating over it:
List list = Collections.synchronizedList(new ArrayList()); ... synchronized(list) { Iterator i = list.iterator(); // Must be in synchronized block while (i.hasNext()) foo(i.next()); }Failure to follow this advice may result in non-deterministic behavior.
The returned list will be serializable if the specified list is serializable.
public static <T,S> java.util.Map<T,S> synchronizedMap(java.util.Map<T,S> m)
It is imperative that the user manually synchronize on the returned map when iterating over any of its collection views:
Map m = Collections.synchronizedMap(new HashMap()); ... Set s = m.keySet(); // Needn't be in synchronized block ... synchronized(m) { // Synchronizing on m, not s! Iterator i = s.iterator(); // Must be in synchronized block while (i.hasNext()) foo(i.next()); }Failure to follow this advice may result in non-deterministic behavior.
The returned map will be serializable if the specified map is serializable.
public static <T,S> java.util.SortedMap<T,S> synchronizedSortedMap(java.util.SortedMap<T,S> m)
It is imperative that the user manually synchronize on the returned sorted map when iterating over any of its collection views, or the collections views of any of its subMap, headMap or tailMap views.
SortedMap m = Collections.synchronizedSortedMap(new HashSortedMap()); ... Set s = m.keySet(); // Needn't be in synchronized block ... synchronized(m) { // Synchronizing on m, not s! Iterator i = s.iterator(); // Must be in synchronized block while (i.hasNext()) foo(i.next()); }or:
SortedMap m = Collections.synchronizedSortedMap(new HashSortedMap()); SortedMap m2 = m.subMap(foo, bar); ... Set s2 = m2.keySet(); // Needn't be in synchronized block ... synchronized(m) { // Synchronizing on m, not m2 or s2! Iterator i = s.iterator(); // Must be in synchronized block while (i.hasNext()) foo(i.next()); }Failure to follow this advice may result in non-deterministic behavior.
The returned sorted map will be serializable if the specified sorted map is serializable.
public static <T> java.util.Set<T> singleton(T o)
public static <T> java.util.List<T> singletonList(T o)
public static <T,S> java.util.Map<T,S> singletonMap(T key, S value)
public static <T> java.util.List nCopies(int n, T o)
public static <T extends java.lang.Comparable<T>> java.util.Comparator<T> reverseOrder()
Arrays.sort(a, Collections.reverseOrder());sorts the array in reverse-lexicographic (alphabetical) order.
The returned comparator is serializable.
public static <T> java.util.Enumeration<T> enumeration(java.util.Collection<T> c)
public static <T> java.util.List<T> list(java.util.Enumeration<T> e)
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |