Starting from:

$30

Lab 4: Generics Stack, Heap and Red Black Tree Solution

Objectives




Getting familiar with Generics in Java programming language



Applying them in a Java project to write generic classes, methods, ...



Full mark: 35 points






Source files




GenericStack.java



GenericHeap.java



GenericRedBlackTree.java






1 Introduction




Generics, or parameterized types, are a facility of generic programming that was added to the Java programming language in 2004 as part of Java 5 (JDK 1.5). They allow "a type or method to operate on objects of various types while providing compile-time type safety". A common usage of this feature is when using a Java Collection that can hold objects of any type, to specify the specific type of object stored in it. In this lab, we try to address Generics for containers, such as vectors and stacks.




A Java collection (we will explore more in Lab 5) is a flexible data structure that can hold heterogeneous objects where the elements may have any reference type. It is your responsibility, however, to keep track of what types of objects your collections contain. For example, consider adding an integer to a collection: since you cannot have collections of primitive data types you must convert it to the corresponding reference type (i.e. Integer ) before storing it in the collection.










1.1 The Motivation




The motivation for adding generics to the Java programming language stems from the lack of information about a collection's element type, the need for developers to keep track of what type of elements collections contain, and the need for casts all over the place. Using generics, a collection is no longer treated as a list of object references, but you would be able to differentiate between a collection of references to integers and collection of references to bytes. A collection with a generic type has a type parameter that specifies the element type to be stored in the collection. So, instead of relying on the programmer to keep track of object types and performing casts, which could lead to failures at runtime, the compiler can now help the programmer enforce a greater number of type checks and detect more failures at compile time.




This is a quick example of this application of Generics in the casting problem.







List<Apple box;




Put some apples in the box Apple apple = box.get(0);
In the previous code, box is a reference to a list of objects of type Apple . The get method returns an Apple and no casting is required. Without generics, this code would have been:




List box;




Put some apples in the box Apple apple = (Apple) box.get(0);



The main advantage of generics is having the compiler keep track of type parameters, perform the type checks and the casting operations. The compiler guarantees that the casts will never fail.




1.2 The Generic Facility




The generics facility introduced the concept of type variable. A type variable, according to the Java language specification, is an unqualified identifier introduced by:




Generic class declarations



Generic interface declarations



Generic method declarations



Generic constructor declarations



Moreover, other Java concepts can be used in a generic manner:




A class is generic if it declares one or more type variables. These type variables are known as the type parameters of the class. All of these parameterized types share the same class at runtime:






public class Foo<T { }







An interface is generic if it declares one or more type variables. These type variables are known as the type parameters of the interface. Similar to the above, all parameterized types share the same interface at runtime:






public interface Foo<T { }







A method is generic if it declares one or more type variables. These type variables are known as the formal type parameters of the method. The formal type parameter list is identical to a type parameter list of a class or interface:






public <T T getT() { }







A constructor can be declared as generic, independently of whether the class itself is generic or not. A constructor is generic if it declares one or more type variables. These type variables are known as the formal type parameters of the constructor. The formal type parameter list is identical to a type parameter list of a generic class or interface:






public class Foo<T {

public <E Foo(E e) { }




}

new Foo<Integer("I'm a string");







1.3 Bounded Types




There may be times when you want to restrict the types of the generics. For example, a method that operates on numbers might only want to accept instances of Number or its subclasses. This is what







bounded type parameters are for. To declare a bounded type parameter, list the type parameter's name, followed by the extends keyword, and then followed by its upper bound, which, in this example, is Number .







Note that in this context, extending is used in a general sense to mean either "extends" (as in classes) or "implements" (as in interfaces).







<T extends SomeSuperClassOrInterface







2 Stack




The stack represents a last-in-first-out (LIFO) list of objects. It extends vector with five operations that allow a vector to be treated as a stack:




peek : query the top element of the stack. The top element is the only accessible element. If the stack is






empty, then you can peek nothing.




push : add a new element to the top of the stack. If the stack has a max size and is full, then you cannot






successfully push.




pop : remove the top element of the stack. If the stack is already empty, then you cannot successfully pop.



size : query the size of the stack.



isEmpty : query if the stack is empty or not.









3 Postfix Expression




Postfix notation, also known as reverse Polish notation, is a syntax for mathematical expressions where the mathematical operator is always placed after the operands. For instance, the addition of 1 and 2 would be written in postfix notation as 1 2 + . Computer scientists and software developers are interested in postfix







notation because it can be easily and efficiently evaluated with a simple stack machine. Moreover, postfix




notation has been used in some hand-held calculators because it enables arbitrarily complex expressions




to be entered and evaluated without the use of parentheses and without requiring the user to keep track of




intermediate results.


Here are some simple postfix expressions and their results.






Postfix Expression
Result
























9






4 5 +
























93/ 3



Postfix Expression
Result










9


178-
















8








62/5+
























4 Deliverable 1 -- Postfix Expression Calculator by Generic Stack




Step 1:




Refer to the GenericStack.java, and finish the five methods of stack operations.




Step 2:







Finish the calcPostfixExpression method following the brief algorithm:







Initialize the stack.



Parse the expression string into an array of symbols, and feed them to the stack one by one.



If the next symbol is an operand (numbers), then push it to the stack.



If the next symbol is an operator, then there must be at least two operands already in the stack. Pop the two operands to do the corresponding calculation, and then re-push the result back to the stack.



Repeat through all the symbols.



Finally, we have only one element in the stack -- it is the final result. Pop and print it out.



DEMO this deliverable to the lab instructor (10 points).







5 Deliverable 2 -- Generic Heap




Make your heap sort algorithm generic. Please refer to the GenericHeap.java, and finish the TODO codes.




DEMO this deliverable to the lab instructor (5 points).







6 Deliverable 3 -- Generic Red Black Tree




Make your red black tree algorithm generic. Please refer to the GenericRedBlackTree.java, and finish the TODO codes. Note you need also finish the delete method.







DEMO this deliverable to the lab instructor (20 points).

More products