Design a procedure that evolves an iterative ; exponentiation process that uses successive squaring and uses a ; logarithmic number of steps, as does fast-expt(define (fast-expt b n) ; Theta(log(n)) space, Theta(log(n)) time (cond ((= n 0) 1) ((even? n) (square (fast-expt b...