Java Collections
Java Collections
Java Collections
1
Java Collections & JGL
2
Java Collections & JGL
The Bag acts like a Set but permits duplicates. Two more implementations are
available here: HashBag and TreeBag; the latter is sorted.
Another new interface is PriorityQueue. It supports comparable items and the use
of a Comparator, so items can be maintained in a BinaryHeap based on priority and
subsequently removed from the heap based on that priority.
LRUMap is a Map that lets you maintain a maximum capacity and uses a least-
used (accessed) algorithm to determine which node to remove when full.
This capability is already accessible from the standard LinkedHashMap class,
but is only available with J2SE 1.4
.
SoftRefHashMap works like WeakHashMap but uses SoftReference instead of
WeakReference for its keys.
3
Java Collections & JGL
Other classes and interfaces serve mostly supporting roles, but some specialized
behavior is available. Besides utility methods to work with sets like
isSubCollection and union, the framework includes additional Comparators and
Iterators. The Comparators are used mostly for chaining or changing another
Comparator's behavior. For instance, while
java.util.Collections.reverseOrder() lets you reverse the natural order of
elements, the ReverseComparator class lets you reverse the order from any
Comparator. The Iterators support the process of passing each Collection
element to a function (method) before getting the element back. This is a shared
behavior of JGL and STL too.
[http://www.javaworld.com/javaworld/jw-11-2002/jw-1101-collections-p2.html ]
4
Java Collections & JGL
JGL is a direct descendant of STL, C++'s Standard Template Library. (The major
STL/JGL difference: STL is hard to exploit properly, while exploiting JGL is a breeze.
This difference has little to do with the libraries themselves, but instead reflects the
difference in ease of use of the two targeted languages: C++ and Java.) JGL
inherits STL's fundamental library architecture, as depicted by Figure 1 below.
With Collections, the name of the framework itself is tell-tale: Collections focuses
mainly on containers, rather than on containers and algorithms. This is a very
different approach from JGL, which treats algorithms and containers as equals. This
fundamental difference leads to more differences down the line, eventually
diverging into large areas where the two frameworks have little in common.
5
Java Collections & JGL
[ http://www.javaworld.com/javaworld/jw-01-1999/jw-01-jglvscoll-p2.html ]
JGL: An overview
The problem domain JGL focuses on can be expressed in Niklaus Wirth's immortal
formula: algorithms + data structures. Or rather, in this object-oriented era: data
structures + algorithms.
On the data structures side, JGL makes available a set of Abstract Data Types
(ADTs) that are derived from an abstract class called Container -- actually defined
as a Java interface. Containers are further sub-categorized into the following (as
shown also in Figure 1):
Queue
Stack
All sequences (containers in which element ordering plays a role) and sets
(containers in which element ordering is unimportant) "descend" from their
respective interfaces -- that is, Sequence and Set -- which inherit from interface
Container. (Do not confuse the AWT Container class with JGL's Container: The
two classes are unrelated.)
6
Java Collections & JGL
Sorting
Finding
Filtering
Counting
Replacing
Reversing
Applying
Transforming
Copying
Both groups of classes, data structures, and algorithms, can be coupled together
with the help of a host of helper classes: iterator and function classes.
Function classes let you encapsulate "functions" (method calls, condition functions)
as objects that you can then apply "in bulk" to containers in myriad different ways.
For example, if you had a "convert to uppercase" function, you could convert every
string in any container to uppercase, irrespective of whether the container is a
linked list, a native Java array, a hashtable, or a set, and so on.