Question 3:

A two-dimensional array of integers in which most elements are zero is called a sparse array. Because most elements have a value of zero, memory can be saved by storing only the non-zero values along with their row and column indexes. The following complete SparseArrayEntry class is used to represent non-zero elements in a sparse array. A SparseArrayEntry object cannot be modified after it has been constructed.

The SparseArray class represents a sparse array. It contains a list of SparseArrayEntry objects, each of which represents one of the non-zero elements in the array. The entries representing the non-zero elements are stored in the list in no particular order. Each non-zero element is represented by exactly one entry in the list.

The following table shows an example of a two-dimensional sparse array. Empty cells in the table indicate zero values.

The sample array can be represented by a SparseArray object, sparse, with the following instance variable values. The items in entries are in no particular order; one possible ordering is shown below.

(a) Write the SparseArray method getValueAt. The method returns the value of the sparse array element at a given row and column in the sparse array. If the list entries contains an entry with the specified row and column, the value associated with the entry is returned. If there is no entry in entries corresponding to the specified row and column, 0 is returned. In the example above, the call sparse.getValueAt(3, 1) would return -9, and sparse.getValueAt(3, 3) would return 0. Complete method getValueAt below.

(b) Write the SparseArray method removeColumn. After removing a specified column from a sparsearray: All entries in the list entries with column indexes matching col are removed from the list. All entries in the list entries with column indexes greater than col are replaced by entries with column indexes that are decremented by one (moved one column to the left). The number of columns in the sparse array is adjusted to reflect the column removed. The sample object sparse from the beginning of the question is repeated for your convenience.

When sparse has the state shown above, the call sparse.removeColumn(1) could result insparse having the following values in its instance variables (since entries is in no particular order, it would be equally valid to reverse the order of its two items). The shaded areas below show the changes.

Complete removeColumn method.


Key Algorithm: Method and Control Structures

public class SparseArrayEntry {
    private int row;
    private int col;
    private int value; 
    public SparseArrayEntry(int r, int c, int v) {
        row = r;
        col = c;
        value = v; 
    }
    public int getRow() {
        return row;
    } 
    public int getCol () {
        return col;
    } 
    public int getValue() {
        return value;
    }; 
}
public class SparseArray {
    private int numRows;
    private int numCols; 
    private List<SparseArrayEntry> entries; 
    public SparseArray() {
        entries = new ArrayList<SparseArrayEntry>(); 
    }
    public void add(SparseArrayEntry entry) {
        entries.add(entry);
    }
    public int getNumRows() {
        return numRows;
    }
    public int getNumCols() {
        return numCols;
    }
    public int getValueAt(int row, int col) //Part A
    {
        for (SparseArrayEntry i: entries)
        {
            if (i.getRow() == row && i.getCol() == col)
            {
                return i.getValue();
            }
        }
        return 0;
    }
    public void removeColumn(int col) { //Part B
        int i = 0;
        while (i < entries.size())
        {
            SparseArrayEntry entry = entries.get(i);
            if (entry.getCol() == col)
            {
                entries.remove(i);
            }
            else if (entry.getCol() > col)
            {
                entries.set(i, new SparseArrayEntry(entry.getRow(), entry.getCol() - 1, entry.getValue()));
                i++;
            }
            else
            {
                i++;
            }
        }
        numCols--;
    }
    public void printEntries() {
        for (SparseArrayEntry entry : entries) {
            System.out.println("Row: " + entry.getRow() + ", Column: " + entry.getCol() + ", Value: " + entry.getValue());
        }
    }     
}
public class Main {
    public static void main(String[] args)
    {
        SparseArray sparseArray = new SparseArray();
        sparseArray.add(new SparseArrayEntry(1, 1, 5));
        sparseArray.add(new SparseArrayEntry(1, 4, 4));
        sparseArray.add(new SparseArrayEntry(2, 0, 1));
        sparseArray.add(new SparseArrayEntry(3, 1, -9));
        System.out.println("Before Remove: ");
        sparseArray.printEntries();

        sparseArray.removeColumn(1); // Remove column 1
        System.out.println("After Remove: ");
        sparseArray.printEntries();
    }
}
Main.main(null);
Before Remove: 
Row: 1, Column: 1, Value: 5
Row: 1, Column: 4, Value: 4
Row: 2, Column: 0, Value: 1
Row: 3, Column: 1, Value: -9
After Remove: 
Row: 1, Column: 3, Value: 4
Row: 2, Column: 0, Value: 1