Generic Types
/* This is wrapper class...
Objective would be to push more functionality into this Class to enforce consistent definition
*/
public abstract class Generics {
public final String masterType = "Generic";
private String type; // extender should define their data type
// generic enumerated interface
public interface KeyTypes {
String name();
}
protected abstract KeyTypes getKey(); // this method helps force usage of KeyTypes
// getter
public String getMasterType() {
return masterType;
}
// getter
public String getType() {
return type;
}
// setter
public void setType(String type) {
this.type = type;
}
// this method is used to establish key order
public abstract String toString();
// static print method used by extended classes
public static void print(Generics[] objs) {
// print 'Object' properties
System.out.println(objs.getClass() + " " + objs.length);
// print 'Generics' properties
if (objs.length > 0) {
Generics obj = objs[0]; // Look at properties of 1st element
System.out.println(
obj.getMasterType() + ": " +
obj.getType() +
" listed by " +
obj.getKey());
}
// print "Generics: Objects'
for(Object o : objs) // observe that type is Opaque
System.out.println(o);
System.out.println();
}
}
public class Rate extends Generics {
// Class data
public static KeyTypes key = KeyType.title; // static initializer
public static void setOrder(KeyTypes key) { Rate.key = key; }
public enum KeyType implements KeyTypes {title, uid, year, type, rating}
// Instance data
private final String uid; // user / person id
private final String year;
private final String type;
private final int rating;
/* constructor
*
*/
public Rate(String uid, String year, String type, int rating)
{
super.setType("Rate");
this.uid = uid;
this.year = year;
this.type = type;
this.rating = rating;
}
/* 'Generics' requires getKey to help enforce KeyTypes usage */
@Override
protected KeyTypes getKey() { return Rate.key; }
/* 'Generics' requires toString override
* toString provides data based off of Static Key setting
*/
@Override
public String toString()
{
String output="";
if (KeyType.uid.equals(this.getKey())) {
output += this.uid;
} else if (KeyType.year.equals(this.getKey())) {
output += this.year;
} else if (KeyType.type.equals(this.getKey())) {
output += this.type;
} else if (KeyType.rating.equals(this.getKey())) {
output += this.rating;
} else {
output += super.getType() + ": " + this.uid + ", " + this.year + ", " + this.type + ", " + this.rating;
}
return output;
}
// Test data initializer
public static Rate[] Ratings() {
return new Rate[]{
new Rate("9", "2021", "Array List", 9),
new Rate("12", "2022", "Methods and Control Structures", 8),
new Rate("3", "2018", "Classes", 4),
new Rate("7", "2014", "2D Arrays", 6)
};
}
/* main to test User class
*
*/
public static void main(String[] args)
{
// Inheritance Hierarchy
Rate[] objs = Ratings();
// print with title
Rate.setOrder(KeyType.title);
Rate.print(objs);
// print name only
Rate.setOrder(KeyType.type);
Rate.print(objs);
}
}
Rate.main(null);
/**
* Implementation of a Double Linked List; forward and backward links point to adjacent Nodes.
*
*/
public class LinkedList<T>
{
private T data;
private LinkedList<T> prevNode, nextNode;
/**
* Constructs a new element
*
* @param data, data of object
* @param node, previous node
*/
public LinkedList(T data, LinkedList<T> node)
{
this.setData(data);
this.setPrevNode(node);
this.setNextNode(null);
}
/**
* Clone an object,
*
* @param node object to clone
*/
public LinkedList(LinkedList<T> node)
{
this.setData(node.data);
this.setPrevNode(node.prevNode);
this.setNextNode(node.nextNode);
}
/**
* Setter for T data in DoubleLinkedNode object
*
* @param data, update data of object
*/
public void setData(T data)
{
this.data = data;
}
/**
* Returns T data for this element
*
* @return data associated with object
*/
public T getData()
{
return this.data;
}
/**
* Setter for prevNode in DoubleLinkedNode object
*
* @param node, prevNode to current Object
*/
public void setPrevNode(LinkedList<T> node)
{
this.prevNode = node;
}
/**
* Setter for nextNode in DoubleLinkedNode object
*
* @param node, nextNode to current Object
*/
public void setNextNode(LinkedList<T> node)
{
this.nextNode = node;
}
/**
* Returns reference to previous object in list
*
* @return the previous object in the list
*/
public LinkedList<T> getPrevious()
{
return this.prevNode;
}
/**
* Returns reference to next object in list
*
* @return the next object in the list
*/
public LinkedList<T> getNext()
{
return this.nextNode;
}
}
import java.util.Iterator;
/**
* Queue Iterator
*
* 1. "has a" current reference in Queue
* 2. supports iterable required methods for next that returns a generic T Object
*/
class QueueIterator<T> implements Iterator<T> {
LinkedList<T> current; // current element in iteration
// QueueIterator is pointed to the head of the list for iteration
public QueueIterator(LinkedList<T> head) {
current = head;
}
// hasNext informs if next element exists
public boolean hasNext() {
return current != null;
}
// next returns data object and advances to next position in queue
public T next() {
T data = current.getData();
current = current.getNext();
return data;
}
}
/**
* Queue: custom implementation
* @author John Mortensen
*
* 1. Uses custom LinkedList of Generic type T
* 2. Implements Iterable
* 3. "has a" LinkedList for head and tail
*/
public class Queue<T> implements Iterable<T> {
LinkedList<T> head = null, tail = null;
/**
* Add a new object at the end of the Queue,
*
* @param data, is the data to be inserted in the Queue.
*/
public void add(T data) {
// add new object to end of Queue
LinkedList<T> tail = new LinkedList<>(data, null);
if (this.head == null) // initial condition
this.head = this.tail = tail;
else { // nodes in queue
this.tail.setNextNode(tail); // current tail points to new tail
this.tail = tail; // update tail
}
}
/**
* Returns the data of head.
*
* @return data, the dequeued data
*/
public T delete() {
T data = this.peek();
if (this.tail != null) { // initial condition
this.head = this.head.getNext(); // current tail points to new tail
if (this.head != null) {
this.head.setPrevNode(tail);
}
}
return data;
}
/**
* Returns the data of head.
*
* @return this.head.getData(), the head data in Queue.
*/
public T peek() {
return this.head.getData();
}
/**
* Returns the head object.
*
* @return this.head, the head object in Queue.
*/
public LinkedList<T> getHead() {
return this.head;
}
/**
* Returns the tail object.
*
* @return this.tail, the last object in Queue
*/
public LinkedList<T> getTail() {
return this.tail;
}
/**
* Returns the iterator object.
*
* @return this, instance of object
*/
public Iterator<T> iterator() {
return new QueueIterator<>(this.head);
}
}
import java.util.Iterator;
/**
* Queue Iterator
*
* 1. "has a" current reference in Queue
* 2. supports iterable required methods for next that returns a generic T Object
*/
class QueueIterator<T> implements Iterator<T> {
LinkedList<T> current; // current element in iteration
// QueueIterator is pointed to the head of the list for iteration
public QueueIterator(LinkedList<T> head) {
current = head;
}
// hasNext informs if next element exists
public boolean hasNext() {
return current != null;
}
// next returns data object and advances to next position in queue
public T next() {
T data = current.getData();
current = current.getNext();
return data;
}
}
/**
* Queue: custom implementation
* @author John Mortensen
*
* 1. Uses custom LinkedList of Generic type T
* 2. Implements Iterable
* 3. "has a" LinkedList for head and tail
*/
public class Queue<T> implements Iterable<T> {
LinkedList<T> head = null, tail = null;
/**
* Add a new object at the end of the Queue,
*
* @param data, is the data to be inserted in the Queue.
*/
public void add(T data) {
// add new object to end of Queue
LinkedList<T> tail = new LinkedList<>(data, null);
if (this.head == null) // initial condition
this.head = this.tail = tail;
else { // nodes in queue
this.tail.setNextNode(tail); // current tail points to new tail
this.tail = tail; // update tail
}
}
/**
* Returns the data of head.
*
* @return data, the dequeued data
*/
public T delete() {
T data = this.peek();
if (this.tail != null) { // initial condition
this.head = this.head.getNext(); // current tail points to new tail
if (this.head != null) {
this.head.setPrevNode(tail);
}
}
return data;
}
/**
* Returns the data of head.
*
* @return this.head.getData(), the head data in Queue.
*/
public T peek() {
return this.head.getData();
}
/**
* Returns the head object.
*
* @return this.head, the head object in Queue.
*/
public LinkedList<T> getHead() {
return this.head;
}
/**
* Returns the tail object.
*
* @return this.tail, the last object in Queue
*/
public LinkedList<T> getTail() {
return this.tail;
}
/**
* Returns the iterator object.
*
* @return this, instance of object
*/
public Iterator<T> iterator() {
return new QueueIterator<>(this.head);
}
/**
* Returns if queue is empty
*
* @return boolean if it is empty
*/
public boolean isEmpty() {
return this.head == null;
}
public String toString() {
int count = 0;
String str = "";
for (T e : this) {
str += e + " ";
count++;
}
return "Words count: " + count + ", data: " + str;
}
}
/**
* Driver Class
* Tests queue with string, integers, and mixes of Classes and types
*/
class QueueTester {
public static void main(String[] args)
{
// Create iterable Queue of NCS Generics
Rate.setOrder(Rate.KeyType.year);
// Illustrates use of a series of repeating arguments
QueueManager qGenerics = new QueueManager("My Generics", Rate.Ratings());
qGenerics.printQueue();
qGenerics.queue.add(new Rate("18", "2005", "Methods and Control Structures", 5));
qGenerics.printQueue();
qGenerics.queue.delete();
qGenerics.printQueue();
}
}
QueueTester.main(null);
/**
* Queue Manager
* 1. "has a" Queue
* 2. support management of Queue tasks (aka: titling, adding a list, printing)
*/
class QueueManager<T> {
// queue data
private final String name; // name of queue
private int count = 0; // number of objects in queue
public final Queue<T> queue = new Queue<>(); // queue object
/**
* Queue constructor
* Title with empty queue
*/
public QueueManager(String name) {
this.name = name;
}
/**
* Queue constructor
* Title with series of Arrays of Objects
*/
public QueueManager(String name, T[]... seriesOfObjects) {
this.name = name;
this.addList(seriesOfObjects);
}
/**
* Add a list of objects to queue
*/
public void addList(T[]... seriesOfObjects) { //accepts multiple generic T lists
for (T[] objects: seriesOfObjects)
for (T data : objects) {
this.queue.add(data);
this.count++;
}
}
/**
* Print any array objects from queue
*/
public void printQueue() {
System.out.println(this.name + " count: " + count);
System.out.print(this.name + " data: ");
for (T data : queue)
System.out.print(data + " ");
System.out.println();
}
}
import java.util.*;
/**
* Driver Class
* Tests queue with string, integers, and mixes of Classes and types
*/
class QueueTester1 {
public static void main(String[] args)
{
// Create iterable Queue of Words
String[] words = new String[] { "seven", "slimy", "snakes", "sallying", "slowly", "slithered", "southward"};
Queue<String> queue = new Queue<>();
// Enqueuing all words
for (String word: words){
queue.add(word);
System.out.println("Enqueued data: "+ word);
System.out.println(queue);
}
// Dequeuing all words
while (!(queue.isEmpty())){
String del = queue.delete();
System.out.println("Dequeued data: " + del);
System.out.println(queue);
}
}
}
QueueTester1.main(null);
/**
* Driver Class
* Tests queue with string, integers, and mixes of Classes and types
*/
class QueueTester2{
public static void main(String[] args)
{
// initializing two queues of ints
int[] set1 = {1, 4, 5, 8};
int[] set2 = {2, 3, 6, 7};
Queue<Integer> Q1 = new Queue<>();
for (int n: set1){
Q1.add(n);
}
Queue<Integer> Q2 = new Queue<>();
for (int n: set2){
Q2.add(n);
}
// printing queues individually
System.out.println("1st Queue");
System.out.println(Q1);
System.out.println("2nd Queue");
System.out.println(Q2);
//initializing new queue for queues to order into one another
Queue<Integer> Q3 = new Queue<>();
while (!(Q1.isEmpty()) || !(Q2.isEmpty())){
// checking if first queue is empty
if (Q1.isEmpty()){
Q3.add(Q2.delete());
}
//checking if second queue is empty
else if(Q2.isEmpty()){
Q3.add(Q1.delete());
}
// checking if the first Q1 val is greater than the first Q2 val
else if (Q1.peek() < Q2.peek()){
Q3.add(Q1.delete());
}
else {
Q3.add(Q2.delete());
}
}
// printing new queue
System.out.println("New Queue");
System.out.println(Q3);
}
}
QueueTester2.main(null);
class ShuffleQ<T> {
public void shuffle(Queue<T> q) {
//initializing a new queue
List<T> newQ = new ArrayList<>();
// Add all elements to newQ
while (!q.isEmpty()) {
newQ.add(q.delete());
}
// Add elements back to q in random order
while (!newQ.isEmpty()) {
// Get random index
int rand = (int) (Math.random() * newQ.size());
q.add(newQ.get(rand));
// Remove element from the new queue
newQ.remove(rand);
}
}
}
/**
* Driver Class
* Tests queue with string, integers, and mixes of Classes and types
*/
class QueueTester3 {
public static void main(String[] args)
{
// Create first queue
int[] set = {1, 2, 3, 4, 5, 6, 7, 8};
Queue<Integer> Q = new Queue<>();
for (int n : set) {
Q.add(n);
}
System.out.println("Sorted Queue: ");
System.out.println(Q);
System.out.println();
// Shuffle queue using shuffleQ
ShuffleQ<Integer> shuffleQ = new ShuffleQ<>();
shuffleQ.shuffle(Q);
System.out.println("Shuffled Queue: ");
System.out.println(Q);
}
}
QueueTester3.main(null);
class Stack<T>{
LinkedList<T> top = null;
public Stack(){
}
public void push(T data){
top = new LinkedList<T>(data, top);
}
public T pop(){
T val = top.getData();
top = top.getPrevious();
return val;
}
public T peek(){
return top.getData();
}
public String toString(){
LinkedList<T> current = top;
String result = "(Head) -> ";
if (current == null){
result += "Null + ->";
}
while(current !=null){
result += current.getData() + " -> ";
current = current.getPrevious();
}
result += "nil";
return result;
}
}
class QueueTester4 {
public static void main(String[] args)
{
Stack stack = new Stack();
// Create first q
int[] set = {1, 2, 3, 4, 5, 6, 7, 8};
for (int n: set){
System.out.print(n + " -> ");
}
System.out.println();
for (int n: set){
stack.push(n);
}
System.out.println("Stack: ");
System.out.println(stack);
}
}
QueueTester4.main(null);