On 9 July 2013 16:11, Alexander Gunnarson <alexandergunnar...@gmail.com>wrote:

>
> *Example 1: Tail-call recursion*
>
> *Scheme*
> One example would be tail-call recursion. For instance, normally in Scheme
> I'd naively implement an iterative exponent function like this:
>
> (define (expt x n)
>
>         (cond ((= 0 n) 1)
>
>               ((= 1 n) x)
>
>               (else (expt (* x x) (- n 1)))))
>
> Pure. Simple. Beautiful. (Not that I'm the best Scheme programmer ever,
> but to me it looks beautiful, and it conforms well to the base of the
> problem. You get the point.)
>
>
This is not implementing expt as it is usually known, it looks more like
repeated squaring to me.

Ray.

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to