Definition A.2.1. Pre and Post Values.
Given a variable the pre value of denoted is the value before an iteration of a loop. The post value, denoted is the value after the iteration.
xxxxxxxxxx
def slow_exp(a,m,n):
b=1
k=m
while k>0:
b=(b*a)%n # % is integer remainder (mod) operation
k-=1
return b
slow_exp(2,5,7)
xxxxxxxxxx
def fast_exp(a,m,n):
t=a
b=1
k=m
while k>0:
if k%2==1: b=(b*t)%n
t=(t^2)%n
k=k//2 # // is the integer quotient operation
return b
fast_exp(2,5,7)
xxxxxxxxxx
def gcd(a,b):
r0=a
r1=b
while r1 !=0:
t= r0 % r1
r0=r1
r1=t
return r0
gcd(1001,154) #test