Thursday, November 1, 2012

Efficient Data structure to store

Given a large number with many digits, propose a method or data structure to efficiently store them. Addition, subtraction, mult, division should be supported by your design.

1 comment:

  1. We can store them into linked list where each node contains single digit

    ReplyDelete