0% found this document useful (0 votes)
102 views3 pages

Collection Framework

This document outlines an introduction to the Java Collections Framework. It covers the core collection interfaces like Collection, Set, List, and Map. It also discusses common implementation classes like ArrayList, LinkedList, HashSet, and TreeMap. Finally, it covers additional collection topics like iterators, sorting, algorithms, and historical Java collection classes.

Uploaded by

satyanarayana
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
102 views3 pages

Collection Framework

This document outlines an introduction to the Java Collections Framework. It covers the core collection interfaces like Collection, Set, List, and Map. It also discusses common implementation classes like ArrayList, LinkedList, HashSet, and TreeMap. Finally, it covers additional collection topics like iterators, sorting, algorithms, and historical Java collection classes.

Uploaded by

satyanarayana
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 3

Introduction to the Collections Framework

Course Outline

Introduction to the Collections Framework o Mathematical Background o Collection Interfaces and Classes Collection Interface Iterator Interface Group Operations AbstractCollection Class Collection Framework Design Concerns Set Interface HashSet, TreeSet Classes Set Usage Example AbstractSet Class List Interface ListIterator Interface ArrayList, LinkedList Classes List Usage Example AbstractList and AbstractSequentialList Classes Map Interface Map.Entry Interface HashMap, TreeMap Classes Map Usage Example AbstractMap Class WeakHashMap Class Sorting Comparable Interface Comparator Interface SortedSet Interface SortedMap Interface Special Collection Implementations o Read-Only Collections o Thread-Safe Collections o Singleton Collections o Multiple Copy Collections o Empty Collections Historical Collection Classes o Arrays o Vector and Stack Classes o Enumeration Interface o Dictionary, Hashtable, Properties Classes o BitSet Class Algorithm Support o Sorting Arrays o Searching o Checking Equality

You might also like