|
||||||
| C and C++ C and C++ forum for discussing all forms of C except for C#. These languages are powerful low level languages used for creating Operating Systems, Device Drivers, compilers and much more. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
How would you write an algorithm in C to calculate large numbers raised to large numbers modulo n. (numbers in the 10,000s) so obviously can't just do it straight off.
I tried working out x, x^2, x^4 and somehow using the binary representation of the power to work it out but I have no idea how to program this. |
| Sponsored Links |
|
|
|
|||||
|
Code:
int power(int base, int exponent, int modulo)
{
if exponent=1 return base % modulo;
if not (exponent % 2)
return power(base*base%modulo,exponent/2,modulo)
else
return power(base*base%modulo,exponent/2,modulo)*base%modulo;
}
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Programming is a branch of mathematics. |
|
|||||
|
A power to the 10,000? That's really large, although I've always thought if supercomputers can process really, really, really big numbers.
__________________
Funny Stories and Humorous Pictures |
|
|||||
|
Sounds like we are doing your HW for you? 0_o
Good Luck
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum | My Company Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall ![]() ![]() |
| Sponsored Links |
|
|
|
|||||
|
Maybe I should write some tutorials about math in programming.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Programming is a branch of mathematics. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| problem with large numbers | saurav | C and C++ | 4 | 10-11-2007 05:52 PM |
| large floating point calculations | zeos386sx | General Programming | 5 | 04-02-2007 03:31 AM |
| Large list of PAD enabled shareware web sites | UtilityW | Shareware Sites | 2 | 08-24-2006 09:56 PM |
| Large list of PAD enabled shareware web sites | UtilityW | Marketing | 5 | 07-21-2006 11:45 AM |
| WingedPanther | ........ | 2753.6 |
| Xav | ........ | 2704 |
| Brandon W | ........ | 1702.32 |
| John | ........ | 1207.73 |
| marwex89 | ........ | 1175.24 |
| morefood2001 | ........ | 966.05 |
| dcs | ........ | 655.75 |
| Steve.L | ........ | 475.59 |
| orjan | ........ | 418.58 |
| Aereshaa | ........ | 383.54 |