Question: Part B [60] Part A was to write and test a class that implemented the ADT Matrix using the built-in two-dimensional array data structure. This

 Part B [60] Part A was to write and test a
class that implemented the ADT Matrix using the built-in two-dimensional array data

Part B [60] Part A was to write and test a class that implemented the ADT Matrix using the built-in two-dimensional array data structure. This part requires you to implement the same operations using another underlying data structure. This new structure is appropriate for sparse matrices: matrices with many zero elements. You are to use the same class specification as your interface, changing only the private data members. values should be SortedType in this implementation. Sparse Matrixes A sparse matrix is one where there are many zero elements. For example, a matrix A is as follows: A 3 0405 0 0 2 0 1 10 002 Page 2 of 3 Matrix A has 4 rows and 5 columns. Of the 20 places in the matrix, 13 of them are zero. We represent this matrix as a sorted list of triples as shown below. The matrix operations become operations on lists. row column value Processing Notes The list of values should be kept ordered by column within rows. The test plan for an array-based implementation should have been based on the shape of the matrices A test plan for a list implementation should include cases dealing with the length of the list (empty, only one item, etc.)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!