Jan 19, 2009

What data structure would you use to implement MS Excel? Justify your approach.

What data structure would you use to implement MS Excel? Justify your approach.
use normal 2D matrix, with virtually allocated memory, commiting only the used cells. See VirtualAlloc() function in win32 for details. In this case this is very easy to use and memory consumption is just as needed.

No comments:

Post a Comment