You are given two matrices A and B represented in a sparse format. Each matrix is provided as a list of tuples, where each tuple is of the form (row_index, col_index, value) indicating the non-zero entries. In addition, you will be given the dimensions of each matrix:
Your task is to write a function that computes the product matrix C = A * B and returns it in the same sparse representation (i.e., a list of tuples containing only the non-zero entries).
Please ensure your function handles the following:
Example Input:
Matrix A dimensions: 3 x 2
Matrix A entries: [(0, 1, 3), (2, 0, 4)]
Matrix B dimensions: 2 x 3
Matrix B entries: [(0, 2, 5), (1, 1, 6)]
Example Output:
Matrix C sparse representation: [ ... ]
(Your function should compute the correct non-zero values for A * B in sparse form.)
Implement your solution in the programming language of your choice.