The sieve of eratosthenes

R

#!/usr/bin/env Rscript

# Sieve of Eratosthenes in R
# Written by Rob Hoelz

nextPrime <- function(primes, currPrime) {
  currPrime <- currPrime + 1
  while(primes[currPrime] == 0) {
    currPrime <- currPrime + 1
  }
  currPrime
}

printPrimes <- function(primes) {
  for (i in 1:length(primes)) {
    if(primes[i] == 1) cat(i, " ", sep="") else 0
  }
  cat("\n", sep="")
}

sieve <- function(limit) {
  currPrime <- 2
  primes <- c(0, rep(1, times=(limit-1)))
  while (currPrime * currPrime <= limit) {
    primes[seq(currPrime * 2, limit, by=currPrime)] = 0
    currPrime <- nextPrime(primes, currPrime)
  }
  printPrimes(primes)
}

args <- as.integer(commandArgs(TRUE))
if(length(args) > 0) {
    sieve(args[1])
}

back to Eratosthenes page

stats

It is Saturday May 17, 2008 10:58 am
This page served 37 times
This page last modified: April 29, 2008 2:08 pm
Your IP address is: 38.103.63.17
You are browsing using: CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
You are browsing from: United States.
badcomputer.org's uptime: 10:58:41 up 23 days, 11:40, 0 users, load average: 0.00, 0.00, 0.00

local

home | unix stuff | dir2ogg | sneetchalizer | wmainfo | q&d guide to permissions | q&d guide to tar and gzip | code | MS rant | browser shootout | linux & iAudio X5 | photos | music | programming poetry | sieve of Eratosthenes | plea | rain | suffer | archive | about | recipes | compaqr3000 | sitemap

search

Google

credits

hacker emblem

This page, and all pages on this site were created and are maintained by Darren Kirby using valid XHTML 1.0 and CSS, and are ©copyright 2002 - 2008. The Penguin image was created by Tukka, and is used by permission. Inspiration for the look of this site was provided by Eric A. Meyer's CSS gallery. This website runs on Gentoo Linux. It is served by Apache. PHP and MySQL hold together the backend.

advertisement