Question 3

Directions: SHOW ALL YOUR WORK. REMEMBER THAT PROGRAM SEGMENTS ARE TO BE WRITTEN IN JAVA.

Notes:

Assume that the classes listed in the Java Quick Reference have been imported where appropriate.

Unless otherwise noted in the question, assume that parameters in method calls are not null and that methods are called only when their preconditions are satisfied.

In writing solutions for each question, you may use any of the accessible methods that are listed in classes defined in that question. Writing significant amounts of code that can be replaced by a call to one of these methods will not receive full credit.

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.

a

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.

a

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

a

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

(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.

a

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 addEntry(SparseArrayEntry entry)
    {
        entries.add(entry);
    }

    public int getNumRows()
    {   return numRows;   }

    public int getNumCols()
    {   return numCols;   }

    public int getValueAt(int row, int col) {
        for (int i = 0; i < entries.size(); i ++) {
            SparseArrayEntry entry = entries.get(i);

            if (entry.getRow() == row && entry.getCol() == col) {
                return entry.getValue();
            }
        }

        return 0;
    }
}

// dont care if theres a better way im lazy rn

SparseArray sparse = new SparseArray();

SparseArrayEntry entry1 = new SparseArrayEntry(1, 4, 4);
SparseArrayEntry entry2 = new SparseArrayEntry(2, 0, 1);
SparseArrayEntry entry3 = new SparseArrayEntry(3, 1, -9);
SparseArrayEntry entry4 = new SparseArrayEntry(1, 1, 5);

sparse.addEntry(entry1);
sparse.addEntry(entry2);
sparse.addEntry(entry3);
sparse.addEntry(entry4);

// Test
sparse.getValueAt(2, 0);
1

(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*

a

The shaded entries in entries, below, correspond to the shaded column above.

a

a

a

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 addEntry(SparseArrayEntry entry)
    {
        entries.add(entry);
    }

    public int getNumRows()
    {   return numRows;   }

    public int getNumCols()
    {   return numCols;   }

    public int getValueAt(int row, int col)
    {
        for (int i = 0; i < entries.size(); i ++) {
            SparseArrayEntry entry = entries.get(i);

            if (entry.getRow() == row && entry.getCol() == col) {
                return entry.getValue();
            }
        }

        return 0;
    }

    public void removeColumn(int col)
    {
        for (int i = 0; i < entries.size(); i ++) {
            if (entries.get(i).getCol() == col) {      
                entries.remove(i);
                i --;
            }
        }
    }
}

// dont care if theres a better way im lazy rn

SparseArray sparse = new SparseArray();

SparseArrayEntry entry1 = new SparseArrayEntry(1, 4, 4);
SparseArrayEntry entry2 = new SparseArrayEntry(2, 0, 1);
SparseArrayEntry entry3 = new SparseArrayEntry(3, 1, -9);
SparseArrayEntry entry4 = new SparseArrayEntry(1, 1, 5);

sparse.addEntry(entry1);
sparse.addEntry(entry2);
sparse.addEntry(entry3);
sparse.addEntry(entry4);

// Test

System.out.println("Before running removeColumn()");
System.out.println(sparse.getValueAt(1, 1));
System.out.println(sparse.getValueAt(3, 1));

sparse.removeColumn(1);

System.out.println("After running removeColumn()");
System.out.println(sparse.getValueAt(1, 1));
System.out.println(sparse.getValueAt(3, 1));
Before running removeColumn()
5
-9
After running removeColumn()
0
0

Reflection

This one was actually pretty challenging because I didn’t expect to have to write my own method for adding entries to the sparse array. Also its a data structure I’m unfamiliar with. Didn’t have any syntax issues this time, but did encounter an issue when writing the removeColumn() method, as I didn’t realize I had to decrement i each time I removed something.

Type is methods and control structures & arrays