Clojure - tail recursive sieve of Eratosthenes
Posted
by Konrad Garus
on Stack Overflow
See other posts from Stack Overflow
or by Konrad Garus
Published on 2010-06-05T13:48:11Z
Indexed on
2010/06/05
13:52 UTC
Read the original article
Hit count: 336
I have this implementation of the sieve of Eratosthenes in Clojure:
(defn sieve [n]
(loop [last-tried 2 sift (range 2 (inc n))]
(if
(or (nil? last-tried) (> last-tried n))
sift
(let [filtered (filter #(or (= % last-tried) (< 0 (rem % last-tried))) sift)]
(let [next-to-try (first (filter #(> % last-tried) filtered))]
(recur next-to-try filtered))))))
For larger n
(like 20000) it ends with stack overflow. Why doesn't tail call elimination work here? How to fix it?
© Stack Overflow or respective owner