[algogeeks] MS written test qs

2011-08-07 Thread deepikaanand
can any1 plz gv the solution of the following problem ;- You have to make a package library which will do the calculation of (a^b)mod(c), where a, b, c are very large size of 1 digits. (^- power). Design a data structure for the numbers' storage and suggest what functions will you be providing

Re: [algogeeks] MS written test qs

2011-08-07 Thread Ravinder Kumar
Method 1 : Use character array to store large number . Define addition subtraction function for the following representation of number . Using addition subtraction number u can write another operation for the library e.g. multiplication , division , modulus etc . Method 2 : Use Linked list to