JavaCollections Abbrev
JavaCollections Abbrev
Transparency No. 1
Java Collection
Interfaces: Collection
Set SortedSet, List
Transparency No. 2
Java Collection
Collection Interfaces : The primary means by which collections are manipulated. Collection Set, List
A group of objects. May or may not be ordered; May or may not contain duplicates.
Set SortedSet
The familiar set abstraction. No duplicates; May or may not be ordered.
SortedSet
elements automatically sorted, either in their natural ordering (see the Comparable interface), or by a Comparator object provided when a SortedSet instance is created.
List
Ordered collection, also known as a sequence. Duplicates permitted; Allows positional access.
Transparency No. 3
Java Collection
Map SortedMap
A mapping from keys to values. Each key can map to at most one value (function).
SortedMap
A map whose mappings are automatically sorted by key, either in the keys' natural ordering or by a comparator provided when a SortedMap instance is created.
Transparency No. 4
Java Collection
1. AbstractCollection (Collection)
AbstractSet (Set) HashSet, TreeSet(SortedSet) AbstractList (List) ArrayList, AbstractSequentialList LinkedList HashMap TreeMap (SortedMap) WeakHashMap
AbstractMap (Map)
Arrays Collections
Transparency No. 5
Java Collection
The primary implementations of the collection interfaces. HashSet : Hash table implementation of the Set interface. TreeSet : Red-black tree implementation of the SortedSet interface. ArrayList : Resizable-array implementation of the List interface.
(Essentially an unsynchronized Vector.) The best all-around implementation of the List interface.
Java Collection
represents a group of objects, known as its elements. no direct implementation The primary use : pass around collections of objects where maximum generality is desired. Ex: List l = new ArrayList( c ) ; // c is a Collection object
Transparency No. 7
Java Collection
The definition
public interface Collection { // Basic properties int size(); boolean isEmpty(); boolean contains(Object element); // use equals() for comparison boolean equal(Object); int hashCode(); // new equals() requires new hashCode() // basic operations boolean add(Object); // Optional; return true if this changed boolean remove(Object); // Optional; use equals() (not ==)
Transparency No. 8
Java Collection
Iterator allows the caller to remove elements from the underlying collection during the iteration with well-defined semantics. Method names have been improved. public interface Iterator { boolean hasNext(); // cf: hasMoreElements() Object next(); // cf: nextElement() void remove(); // Optional } // a simple Collection filter using iterator that Enumeration could not help static void filter(Collection c) { for (Iterator i = c.iterator(); i.hasNext(); ) { if ( no-good( i.next() ) ) i.remove(); // i.next() is removed from c i.remove(); // exception raised, cannot remove more than once ! }}
Transparency No. 9
Java Collection
is a Collection that cannot contain duplicate elements. models the mathematical set abstraction. contains no methods other than those inherited from Collection.
same signatures but different semantics ( meaning ) Collection c = new LinkedList(); Set s = new HashSet(); String o = a; c.add(o); c.add(o) ; // both return true; c.size() == 2 s.add(o); s.add(o) ; // 2nd add() returns false; s.size() == 1
Two Set objects are equal if they contain the same elements. Two direct implementations:
HashSet TreeSet
Transparency No. 10
Java Collection
Basic Operations
A simple program to detect duplicates using set: import java.util.*; public class FindDups { public static void main(String args[]) { Set s = new HashSet(); // or new TreeSet(), another implementation of Set // following code uses Set methods only for (int i=0; i<args.length; i++) if (!s.add(args[i])) System.out.println("Duplicate detected: + args[i]); System.out.println(s.size()+" distinct words detected: "+s); }} % java FindDups i came i saw i left Duplicate detected: i Duplicate detected: i 4 distinct words detected: [came, left, saw, i]
Transparency No. 11
Java Collection
A Map is an object that maps keys to values. A map cannot contain duplicate keys: Each key can map to at most one value. Three implementations:
HashMap, which stores its entries in a hash table, is the bestperforming implementation. TreeMap, which stores its entries in a red-black tree, guarantees the order of iteration. Hashtable has also been retrofitted to implement Map.
All implementation must provide two constructors: (like Collections) Assume M is your implementation
M() // empty map M(Map m) // a copy of map from m
Transparency No. 12
Java Collection
public interface Map { // Map does not extend Collection // Basic Operations // put or replace, return replace object // NOTE: different from Weisss insert(Hashable x) Object put(Object key, Object value); // optional Object get(Object key); Object remove(Object key); boolean containsKey(Object key); boolean containsValue(Object value); int size(); boolean isEmpty();
Transparency No. 13
Java Collection
// Bulk Operations void putAll(Map t); //optional void clear(); // optional // Collection Views; // backed by the Map, change on either will be reflected on the other. public Set keySet(); // cannot duplicate by definition!! public Collection values(); // can duplicate public Set entrySet(); // no equivalent in Dictionary // nested Interface for entrySet elements public interface Entry { Object getKey(); Object getValue(); Object setValue(Object value); }}
Transparency No. 14
Java Collection
Basic Operations
a simple program to generate a frequency table import java.util.*; public class Freq { private static final Integer ONE = new Integer(1); public static void main(String args[]) { Map m = new HashMap(); // Initialize frequency table from command line for (int i=0; i<args.length; i++) { Integer freq = (Integer) m.get(args[i]); // key is a string m.put(args[i], (freq==null ? ONE : new Integer( freq.intValue() + 1))); } // value is Integer System.out.println( m.size()+" distinct words detected:"); System.out.println(m); } } > java Freq if it is to be it is up to me to delegate 8 distinct words detected: {to=3, me=1, delegate=1, it=2, is=2, if=1, be=1, up=1}
Transparency No. 15
Java Collection
the standard idiom for iterating over the keys in a Map: for (Iterator i = m.keySet().iterator(); i.hasNext(); ) { System.out.println(i.next()); if(no-good()) i.remove() ; } // support removal from the back Map Iterating over key-value pairs for (Iterator i=m.entrySet().iterator(); i.hasNext(); ) { Map.Entry e = (Map.Entry) i.next(); System.out.println(e.getKey() + ": " + e.getValue()); }
Transparency No. 16
Java Collection
Implementations are the actual data objects used to store collections (and Maps). Three kinds of implementations: General-purpose Implementations
the public classes that provide the primary implementations of the core interfaces.
Wrapper Implementations
used in combination with other implementations (often the generalpurpose implementations) to provide added functionality.
Convenience Implementations
Convenience implementations are mini-implementations, typically made available via static factory methods that provide convenient, efficient alternatives to the general-purpose implementations for special collections (like singleton sets).
Transparency No. 17
Java Collection
Hash Table
Resizable array
linked list
Set
List
Map
Transparency No. 18
Java Collection
consistent names as well as consistent behavior. full implementations [of all the optional operations]. All permit null elements, keys and values. unsynchronized.
remedy the deficiency of Hashtable and Vector can become synchronized through the synchronization wrappers
All have fail-fast iterators, which detect illegal concurrent modification during iteration and fail quickly and cleanly. All are Serializable, all support a public clone() method. should be thinking about the interfaces rather than the implementations. The choice of implementation affects only performance.
Transparency No. 19
Java Collection
HashSet/ HashMap is much faster (constant time vs. log time for most operations), but offers no ordering guarantees. always use HashSet/HashMap unless you need to use the operations in the SortedSet, or in-order iteration. choose an appropriate initial capacity of your HashSet if iteration performance is important.
The default initial capacity is 101, and that's often more than you need. can be specified using the int constructor. Set s= new HashSet(17); // set bucket size to 17
Transparency No. 20
Java Collection
static int binarySearch(List list, Object key [, Comparator c]) static void copy(List dest, List src) // foreach i d.set(i, s.get(i)); static Enumeration enumeration(Collection c)
Returns an enumeration over the specified collection.
static void fill(List list, Object o) static Object max(Collection coll [, Comparator comp] ) static Object min(Collection coll [, Comparator comp] ) static List nCopies(int n, Object o) static void reverse(List l) static Set singleton(Object o) static Comparator reverseOrder() // assume a is of type String[] // usage: Arrays.sort(a, Collections.reverseOrder()); static void shuffle(List list [, Random rnd]) static void swap(List, int, int) static void rotate(List, int d) ;// obj at i moved to ( i - d mod size())
Transparency No. 21