Programming pearls Problem 7 is about transposing a 4000 x 4000 matrix stored on a magnetic tape.
My solution was to simply use a temporary variable and swap the contents of a[i][j] and a[j][i].
The solution given by the author confused me a little bit. He says we should:

  1. Prepend the row and column indices to each
  2. sort the records in the matrix by row
  3. remove the appended indices.

Why do you have to go through so much trouble to get this done? Does it have something to do with magnetic tapes?

link|improve this question

feedback

1 Answer

I think magnetic tapes means: to find one certain element, you have to travel from the beginning to that element.

But I have difficulty in understanding "what is system tape sort" and "why it works".

link|improve this answer
linear access, i mean – Chen Jan 11 at 16:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.