Java Collections Generics
Java Collections Generics
java.util package
By Waqas 1
Comparable Interface Arrays Class Comparator Interface Collections Class Generics in Java Examples of Generic Errors Generic ArrayList
Collection Interface
Set Interface List Interface SortedSet Interface Map Interface SortedMap Interface Collection Framework Implementations ArrayList Class LinkedList Class HastSet Class TreeSet Class HashMap Class TreeMap Class
Generic TreeSet
Generic TreeMap Generic Iterator
By Waqas
The java collection framework standardizes the way in which groups of objects are handled by your programs by providing a unified architecture called Collection Framework
By Waqas 3
First, the framework provides high performance, fast and highly efficient way to work with groups of objects.
Second, the framework allows different types of collections to work in a similar manner with high 4 By Waqas degree of compatibility.
Interfaces
Abstract data types to manipulate collections independent of implementation Collection, Set, List, Map etc.
By Waqas
details.
e.g.
Implementations
Concrete classes which are implementing Collection interfaces, used as reusable data structures. e.g. HashMap, ArrayList, TreeSet, HashSet etc.
Algorithms
Methods to perform operations on collections such as sorting, searching, iterations.
By Waqas 6
By Waqas
Collection
Map
Set
List
SortedMap
SortedSet
Collection Framework
Interfaces
By Waqas 8
Collection Interface
A Collection interface is the super interface in the collection interfaces hierarchy. A collection represents a group of objects, known as its elements. Java does not provide any direct implementation of this interface. It provides implementations of more specific subinterfaces like Set and List.
By Waqas 9
Set Interface
A Set is a Collection that does not contain duplicate elements, so its a collection of unique elements. If you add duplicate element in Set then add( ) method simply ignore the element and return false.
The elements in Set are not in order. The set interface does not define any additional methods, it inherits all the methods of Collection interface.
By Waqas 10
List Interface
The List interface also extends Collection interface and declares the behavior of a collection that stores a sequence of objects in order. Elements can be inserted or retrieved by their position in the list, using a zero based index.
By Waqas
11
SortedSet Interface
The SortedSet interface extends Set and declares the behavior of a set in which objects are sorted in either their natural order or the order you specified in your custom object. SortedSet does not accept duplicate elements.
By Waqas
12
Map Interface
A Map is an object that maps keys to values. A map cannot contain duplicate keys but can contain duplicate values.
SortedMap Interface
The SortedMap interface extends Map and declares the behavior of a map in which objects are sorted by their keys in their natural order or custom order.
By Waqas
14
Set
List Map
Not Allowed
Allowed Not Allowed for Keys
No Order
Order by Index No Order
No Sorting
No Sorting No Sorting
By Waqas
15
By Waqas
16
Set
SortedSet
List
HashSet
TreeSet
ArrayList
LinkedList
Vector
Map
SortedMap
HashMap
TreeMap
By Waqas
ArrayList Class
ArrayList class implements the List interface.
ArrayList is a dynamic array that can grow and shrink automatically as needed. Insertions and deletions are linear thats why these operations are slow in ArrayList Searching is fast in ArrayList because Java performs search randomly.
By Waqas 18
LinkedList Class
LinkedList class implements the List interface.
Every element in LinkedList contains the data item and the pointer to the next node. Insertions and deletions are fast because they are linear in time. Searching is slow as java search LinkedList sequentially not randomly.
By Waqas 19
HashSet Class
HastSet provides an implementation of Set
interface. Objects are not stored in order thats why searching objects is very fast.
TreeSet Class
TreeSet provides an implementation of SortedSet interface. Objects are stored in sorted, ascending order. Access and retrieval times is not as fast as HashSet. TreeSet is an excellent choice when you want to store large amounts of sorted data items.
By Waqas 21
HashMap Class
HashMap provides an implementation of Map interface. Objects are stored as key-value pairs. null objects are supported by the HashMap. Objects are not stored in order.
By Waqas
22
TreeMap Class
TreeMap class implements SortedMap interface. It provides an efficient means of storing key-value pairs in sorted order based on their keys.
As objects are sorted so random access or searching is little slower then HashMap.
By Waqas 23
Comparable Interface
Many java collection framework classes such as TreeMap, TreeSet perform automatic sorting of objects when they added in the collection.
For sorting objects they must be comparable. Java provides an interface to make two objects comparable. Custom classes should implement comparable interface to provide logic for class specific sorting
By Waqas 24
Comparable Interface
class Student implements Comparable { int id; public int compareTo(Object obj) { Student s2 = (Student) obj; Integer st1 = new Integer(this.id); Integer st2 = new Integer(s2.id); return st1.compareTo(st2); }
By Waqas 25
Arrays Class
Arrays class contains manipulating arrays. various methods for
The two most common methods are sorting and searching. To sort array pass the array in the sort method. This method sort all elements in their natural order.
To search elements inside array use binarySearch 26 By Waqas method.
Comparator Interface
Comparator interface is used to create objects which can be passed to Arrays.sort or Collection.sort methods or collections such as TreeMap and TreeSet.
They are used to sort custom objects in collections. They are not needed for arrays and collections of primitive data types and for objects that have a natural sorting order such as String, Integer.
By Waqas 27
Comparator Interface
class StudentComparator implements Comparator { public int compare(Object obj1, Object obj2) { Student s1 = (Student) obj1; Student s2 = (Student) obj2;
Comparator Interface
Student students[] = new Student[5];
= = = = =
29
Collections Class
Collections class contains various methods for manipulating collections.
sort( List ); binarySearch( List, Object ); min(List); max(List); replaceAll(List, Object, Object); reverse(List); shuffle(List); swap(List, int, int);
By Waqas 30
Java Generics
By Waqas
31
// Compiler Error
By Waqas
33
Java Generics
Generics in Java allow us to create collections with a strong type. This means that if we are creating a collection to store Strings we will be forced to store and retrieve only Strings at compile time and runtime.
Overall result of using generics in java collections is improved reliability, readability and performance.
By Waqas 34
Generic ArrayList
ArrayList<E> list = new ArrayList<E>();
ArrayList<String> list = new ArrayList<String>(); list.add(Simon); list.add(Peter); list.add(new Integer(2)); // Compiler Error
By Waqas
35
Generic TreeSet
TreeSet<E> set = new TreeSet<E>();
By Waqas
36
Generic TreeMap
TreeMap<K,V> map = new TreeMap<K,V>();
By Waqas
37
Generic Iterator
Iterator<E> it = set.iterator();
Iterator<String> it = set.iterator();
String s; while(it.hasNext()) { s = it.next(); }
By Waqas
38
By Waqas
39
By Waqas
40