app3.scala
author Christian Urban <urbanc@in.tum.de>
Fri, 05 Oct 2012 16:26:04 +0100
changeset 21 4e5092ab450a
parent 7 73cf4406b773
permissions -rw-r--r--
one more case

val my_urls = """urbanc""".r

def crawl(url: String, n: Int) : Unit = {
  if (n == 0) ()
  else if (my_urls.findFirstIn(url) == None) ()
  else {
    println("Visiting: " + n + " " + url)
    for (u <- get_all_URLs(get_page(url))) crawl(u, n - 1)
  }
}