Skip to content

Instantly share code, notes, and snippets.

View cdduarte's full-sized avatar

Christopher Duarte cdduarte

View GitHub Profile
/**
* MyLinkedList<E> - partial implementation of Java generic MyLinkedList<E> class
*
* @author christopherduarte
* @course cis551
* @assignment HW6
*
* @param <E>
*/
/**
* Driver - for Java generic ArrayList<E> class
*
* @author christopher duarte
* @author robert irwin
* @course cis551
* @assignment homework5
* @param <E>
*/
/**
* MyArrayist<E> - partial implementation of Java generic ArrayList<E> class
*
* @author christopher duarte
* @reference robert irwin
* @course cis551
* @assignment homework5
* @param <E>
*/
/**
* Driver for Vessel class hierarchy.
*
* @author christopher duarte
* @course cis551
* @referenced "Java Precisely" (2nd ed.), by Peter Sestoft
* @assignment homework5
*
*/
/**
* Vessel class hierarchy.
*
* @author christopher duarte
* @course cis551
* @referenced "Java Precisely" (2nd ed.), by Peter Sestoft
* @assignment homework5
*
*/
/**
* Driver - tests class BankAccount.
*
* @author christopher duarte
* @course cis551
* @assignment homework4
*
*/
import java.math.BigDecimal;
/**
* BankAccount - declares class representing a bank account.
*
* @author christopher duarte
* @course cis551
* @assignment homework4
*
*/
import java.math.BigDecimal;
/**
* Driver - tests Frac class representing rational numbers.
*
* @author christopher duarte
* @author robertirwin
* @course cis551
* @assignment homework3
*
*/
/**
* Frac - declares class representing rational numbers.
*
* @author christopher duarte
* @author robertirwin
* @course cis551
* @assignment homework3
*
*/
/**
* Driver - tests the class Complex representing complex numbers
*
* @author christopherduarte
* @referenced robertirwin
* @course cis551
* @assignment homework3
*
*/