/**************************************************************** * Class SortedList.java * Author: Yanni Giftakis * Date: July 9, 2004 * Purpose: to maintain a sorted list of values, with order controlled by * the variable: order. * * private: * order - describes the order of the list: * (default) false - ascending; true - descrending * * public: * SortedList() - default constructor. * SortedList(SortedList) - copy constructor * * add() - adds a new integer value to the list, in the proper place * equals() - checks the equality of this and an other SortedList, with total * setOrder() - sets (or resets) the value of the order * sort() - sorts the values in the list (uses swap() method) * * get() - [super] returns the list element value at index i * length() - [super] returns the length (# of elements) in the list * shrink() - [super] reduces the list by 1 element; looses first element * swap() - [super] swaps the list values at indexes i, j * toString() - returns a String of a formatted display of the in the list * total() - [super] returns the total (summation) of elements in the list * * Note: [super] indicates that the method is not defined in this class, * it is inherited from the parent class: List */ public class SortedList extends List { private boolean order; // sort order flag /******************************************************* SortedList() - default constructor */ public SortedList() { super(); order = false; // default order: false-ascending }// end of SortedList() /******************************************************* SortedList() - copy constructor */ public SortedList(SortedList other) { super(); this.order = other.order; // set order same as other's for (int i=0; i" or "<" to check accordingly * * for the sake of clear code, option 1 is used below. * */ protected void sort() { if (order==false) // ascending order { for (int i=length()-1; i>0; i--) // loop for each element for (int j=0; j get(j+1)) // if out of order, swap swap (j,j+1); // swap elements } else // order must be true: descending { for (int i=length()-1; i>0; i--) // loop for each element for (int j=0; j-->