progs/lecture5.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 30 Nov 2020 03:33:30 +0000
changeset 380 0b55b053eabd
parent 333 0b82e661341a
child 383 72d6a4af4b4a
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
238
25d896ada26c updated
updated
parents: 226
diff changeset
     1
// Scala Lecture 5
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
     2
//=================
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
     3
333
0b82e661341a updated
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
     4
// TODO: word count for a very large file (40GB or so)
0b82e661341a updated
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
     5
// Transform Farenheit into Celsius
0b82e661341a updated
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
     6
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
     7
238
25d896ada26c updated
updated
parents: 226
diff changeset
     8
// Laziness with style
25d896ada26c updated
updated
parents: 226
diff changeset
     9
//=====================
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    10
240
2d8d198360c8 updated
Christian Urban <urbanc@in.tum.de>
parents: 238
diff changeset
    11
// The concept of lazy evaluation doesn’t really 
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    12
// exist in non-functional languages. C-like languages
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
    13
// are (sort of) strict. To see the difference, consider
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    14
238
25d896ada26c updated
updated
parents: 226
diff changeset
    15
def square(x: Int) = x * x
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    16
238
25d896ada26c updated
updated
parents: 226
diff changeset
    17
square(42 + 8)
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    18
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    19
// This is called "strict evaluation".
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    20
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
    21
// On the contrary, say we have a pretty expensive operation:
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    22
238
25d896ada26c updated
updated
parents: 226
diff changeset
    23
def peop(n: BigInt): Boolean = peop(n + 1) 
240
2d8d198360c8 updated
Christian Urban <urbanc@in.tum.de>
parents: 238
diff changeset
    24
238
25d896ada26c updated
updated
parents: 226
diff changeset
    25
val a = "foo"
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
    26
val b = "foo"
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    27
238
25d896ada26c updated
updated
parents: 226
diff changeset
    28
if (a == b || peop(0)) println("true") else println("false")
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    29
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    30
// This is called "lazy evaluation":
238
25d896ada26c updated
updated
parents: 226
diff changeset
    31
// you delay compuation until it is really 
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    32
// needed. Once calculated though, the result
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    33
// does not need to be re-calculated.
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    34
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    35
// A useful example is
328
b217232e9246 updated
Christian Urban <urbanc@in.tum.de>
parents: 326
diff changeset
    36
238
25d896ada26c updated
updated
parents: 226
diff changeset
    37
def time_needed[T](i: Int, code: => T) = {
25d896ada26c updated
updated
parents: 226
diff changeset
    38
  val start = System.nanoTime()
25d896ada26c updated
updated
parents: 226
diff changeset
    39
  for (j <- 1 to i) code
25d896ada26c updated
updated
parents: 226
diff changeset
    40
  val end = System.nanoTime()
25d896ada26c updated
updated
parents: 226
diff changeset
    41
  f"${(end - start) / (i * 1.0e9)}%.6f secs"
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    42
}
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    43
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    44
// A slightly less obvious example: Prime Numbers.
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    45
// (I do not care how many) primes: 2, 3, 5, 7, 9, 11, 13 ....
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    46
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    47
def generatePrimes (s: LazyList[Int]): LazyList[Int] =
238
25d896ada26c updated
updated
parents: 226
diff changeset
    48
  s.head #:: generatePrimes(s.tail.filter(_ % s.head != 0))
25d896ada26c updated
updated
parents: 226
diff changeset
    49
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    50
val primes = generatePrimes(LazyList.from(2))
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    51
238
25d896ada26c updated
updated
parents: 226
diff changeset
    52
// the first 10 primes
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
    53
primes.take(100).toList
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    54
238
25d896ada26c updated
updated
parents: 226
diff changeset
    55
time_needed(1, primes.filter(_ > 100).take(3000).toList)
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    56
time_needed(1, primes.filter(_ > 100).take(3000).toList)
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    57
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    58
// A Stream (LazyList) of successive numbers:
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    59
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    60
LazyList.from(2).take(10)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    61
LazyList.from(2).take(10).force
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    62
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    63
// An Iterative version of the Fibonacci numbers
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    64
def fibIter(a: BigInt, b: BigInt): LazyList[BigInt] =
238
25d896ada26c updated
updated
parents: 226
diff changeset
    65
  a #:: fibIter(b, a + b)
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    66
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    67
238
25d896ada26c updated
updated
parents: 226
diff changeset
    68
fibIter(1, 1).take(10).force
25d896ada26c updated
updated
parents: 226
diff changeset
    69
fibIter(8, 13).take(10).force
25d896ada26c updated
updated
parents: 226
diff changeset
    70
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    71
fibIter(1, 1).drop(10000).take(1)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    72
fibIter(1, 1).drop(10000).take(1).force
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    73
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    74
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
    75
// LazyLists are good for testing
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    76
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    77
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    78
// Regular expressions - the power of DSLs in Scala
238
25d896ada26c updated
updated
parents: 226
diff changeset
    79
//                                     and Laziness
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    80
//==================================================
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    81
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    82
abstract class Rexp
226
6bb7810d2108 updated
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    83
case object ZERO extends Rexp                     // nothing
6bb7810d2108 updated
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    84
case object ONE extends Rexp                      // the empty string
6bb7810d2108 updated
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    85
case class CHAR(c: Char) extends Rexp             // a character c
6bb7810d2108 updated
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    86
case class ALT(r1: Rexp, r2: Rexp) extends Rexp   // alternative  r1 + r2
6bb7810d2108 updated
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    87
case class SEQ(r1: Rexp, r2: Rexp) extends Rexp   // sequence     r1 . r2  
6bb7810d2108 updated
Christian Urban <urbanc@in.tum.de>
parents: 225
diff changeset
    88
case class STAR(r: Rexp) extends Rexp             // star         r*
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    89
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    90
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    91
// some convenience for typing in regular expressions
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    92
import scala.language.implicitConversions    
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    93
import scala.language.reflectiveCalls 
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    94
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    95
def charlist2rexp(s: List[Char]): Rexp = s match {
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    96
  case Nil => ONE
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    97
  case c::Nil => CHAR(c)
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    98
  case c::s => SEQ(CHAR(c), charlist2rexp(s))
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
    99
}
224
1a45c9bcc77b updated
Christian Urban <urbanc@in.tum.de>
parents: 223
diff changeset
   100
implicit def string2rexp(s: String): Rexp = 
1a45c9bcc77b updated
Christian Urban <urbanc@in.tum.de>
parents: 223
diff changeset
   101
  charlist2rexp(s.toList)
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   102
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   103
implicit def RexpOps (r: Rexp) = new {
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   104
  def | (s: Rexp) = ALT(r, s)
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   105
  def % = STAR(r)
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   106
  def ~ (s: Rexp) = SEQ(r, s)
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   107
}
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   108
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   109
implicit def stringOps (s: String) = new {
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   110
  def | (r: Rexp) = ALT(s, r)
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   111
  def | (r: String) = ALT(s, r)
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   112
  def % = STAR(s)
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   113
  def ~ (r: Rexp) = SEQ(s, r)
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   114
  def ~ (r: String) = SEQ(s, r)
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   115
}
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   116
238
25d896ada26c updated
updated
parents: 226
diff changeset
   117
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   118
238
25d896ada26c updated
updated
parents: 226
diff changeset
   119
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   120
//example regular expressions
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   121
val digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   122
val sign = "+" | "-" | ""
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   123
val number = sign ~ digit ~ digit.% 
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   124
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   125
// Task: enumerate exhaustively regular expressions
238
25d896ada26c updated
updated
parents: 226
diff changeset
   126
// starting from small ones towards bigger ones.
25d896ada26c updated
updated
parents: 226
diff changeset
   127
240
2d8d198360c8 updated
Christian Urban <urbanc@in.tum.de>
parents: 238
diff changeset
   128
// 1st idea: enumerate them all in a Set
2d8d198360c8 updated
Christian Urban <urbanc@in.tum.de>
parents: 238
diff changeset
   129
// up to a level
238
25d896ada26c updated
updated
parents: 226
diff changeset
   130
25d896ada26c updated
updated
parents: 226
diff changeset
   131
def enuml(l: Int, s: String) : Set[Rexp] = l match {
25d896ada26c updated
updated
parents: 226
diff changeset
   132
  case 0 => Set(ZERO, ONE) ++ s.map(CHAR).toSet
25d896ada26c updated
updated
parents: 226
diff changeset
   133
  case n =>  
25d896ada26c updated
updated
parents: 226
diff changeset
   134
    val rs = enuml(n - 1, s)
25d896ada26c updated
updated
parents: 226
diff changeset
   135
    rs ++
25d896ada26c updated
updated
parents: 226
diff changeset
   136
    (for (r1 <- rs; r2 <- rs) yield ALT(r1, r2)) ++
25d896ada26c updated
updated
parents: 226
diff changeset
   137
    (for (r1 <- rs; r2 <- rs) yield SEQ(r1, r2)) ++
25d896ada26c updated
updated
parents: 226
diff changeset
   138
    (for (r1 <- rs) yield STAR(r1))
25d896ada26c updated
updated
parents: 226
diff changeset
   139
}
25d896ada26c updated
updated
parents: 226
diff changeset
   140
240
2d8d198360c8 updated
Christian Urban <urbanc@in.tum.de>
parents: 238
diff changeset
   141
enuml(1, "a")
238
25d896ada26c updated
updated
parents: 226
diff changeset
   142
enuml(1, "a").size
25d896ada26c updated
updated
parents: 226
diff changeset
   143
enuml(2, "a").size
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   144
enuml(3, "a").size // out of heap space
238
25d896ada26c updated
updated
parents: 226
diff changeset
   145
25d896ada26c updated
updated
parents: 226
diff changeset
   146
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   147
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   148
def enum(rs: LazyList[Rexp]) : LazyList[Rexp] = 
238
25d896ada26c updated
updated
parents: 226
diff changeset
   149
  rs #::: enum( (for (r1 <- rs; r2 <- rs) yield ALT(r1, r2)) #:::
25d896ada26c updated
updated
parents: 226
diff changeset
   150
                (for (r1 <- rs; r2 <- rs) yield SEQ(r1, r2)) #:::
25d896ada26c updated
updated
parents: 226
diff changeset
   151
                (for (r1 <- rs) yield STAR(r1)) )
25d896ada26c updated
updated
parents: 226
diff changeset
   152
25d896ada26c updated
updated
parents: 226
diff changeset
   153
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   154
enum(LazyList(ZERO, ONE, CHAR('a'), CHAR('b'))).take(200).force
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   155
enum(LazyList(ZERO, ONE, CHAR('a'), CHAR('b'))).take(5_000_000).force
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   156
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   157
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   158
def depth(r: Rexp) : Int = r match {
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   159
  case ZERO => 0
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   160
  case ONE => 0
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   161
  case CHAR(_) => 0
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   162
  case ALT(r1, r2) => Math.max(depth(r1), depth(r2)) + 1
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   163
  case SEQ(r1, r2) => Math.max(depth(r1), depth(r2)) + 1 
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   164
  case STAR(r1) => depth(r1) + 1
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   165
}
238
25d896ada26c updated
updated
parents: 226
diff changeset
   166
25d896ada26c updated
updated
parents: 226
diff changeset
   167
25d896ada26c updated
updated
parents: 226
diff changeset
   168
val is = 
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   169
  (enum(LazyList(ZERO, ONE, CHAR('a'), CHAR('b')))
238
25d896ada26c updated
updated
parents: 226
diff changeset
   170
    .dropWhile(depth(_) < 3)
25d896ada26c updated
updated
parents: 226
diff changeset
   171
    .take(10).foreach(println))
25d896ada26c updated
updated
parents: 226
diff changeset
   172
25d896ada26c updated
updated
parents: 226
diff changeset
   173
328
b217232e9246 updated
Christian Urban <urbanc@in.tum.de>
parents: 326
diff changeset
   174
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   175
// (Immutable)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   176
// Object Oriented Programming in Scala
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   177
//
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   178
// =====================================
238
25d896ada26c updated
updated
parents: 226
diff changeset
   179
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   180
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   181
abstract class Animal 
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   182
case class Bird(name: String) extends Animal {
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   183
   override def toString = name
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   184
}
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   185
case class Mammal(name: String) extends Animal
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   186
case class Reptile(name: String) extends Animal
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   187
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   188
Mammal("Zebra")
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   189
println(Mammal("Zebra"))
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   190
println(Mammal("Zebra").toString)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   191
238
25d896ada26c updated
updated
parents: 226
diff changeset
   192
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   193
Bird("Sparrow")
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   194
println(Bird("Sparrow"))
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   195
println(Bird("Sparrow").toString)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   196
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   197
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   198
// There is a very convenient short-hand notation
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   199
// for constructors:
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   200
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   201
class Fraction(x: Int, y: Int) {
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   202
  def numer = x
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   203
  def denom = y
238
25d896ada26c updated
updated
parents: 226
diff changeset
   204
}
25d896ada26c updated
updated
parents: 226
diff changeset
   205
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   206
val half = new Fraction(1, 2)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   207
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   208
case class Fraction(numer: Int, denom: Int)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   209
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   210
val half = Fraction(1, 2)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   211
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   212
half.denom
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   213
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   214
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   215
// In mandelbrot.scala I used complex (imaginary) numbers 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   216
// and implemented the usual arithmetic operations for complex 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   217
// numbers.
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   218
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   219
case class Complex(re: Double, im: Double) { 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   220
  // represents the complex number re + im * i
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   221
  def +(that: Complex) = Complex(this.re + that.re, this.im + that.im)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   222
  def -(that: Complex) = Complex(this.re - that.re, this.im - that.im)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   223
  def *(that: Complex) = Complex(this.re * that.re - this.im * that.im,
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   224
                                 this.re * that.im + that.re * this.im)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   225
  def *(that: Double) = Complex(this.re * that, this.im * that)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   226
  def abs = Math.sqrt(this.re * this.re + this.im * this.im)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   227
}
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   228
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   229
val test = Complex(1, 2) + Complex (3, 4)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   230
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   231
// this could have equally been written as
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   232
val test = Complex(1, 2).+(Complex (3, 4))
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   233
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   234
// this applies to all methods, but requires
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   235
import scala.language.postfixOps
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   236
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   237
List(5, 2, 3, 4).sorted
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   238
List(5, 2, 3, 4) sorted
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   239
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   240
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   241
// ...to allow the notation n + m * i
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   242
import scala.language.implicitConversions   
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   243
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   244
val i = Complex(0, 1)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   245
implicit def double2complex(re: Double) = Complex(re, 0)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   246
238
25d896ada26c updated
updated
parents: 226
diff changeset
   247
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   248
val inum1 = -2.0 + -1.5 * i
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   249
val inum2 =  1.0 +  1.5 * i
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   250
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   251
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   252
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   253
// All is public by default....so no public is needed.
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   254
// You can have the usual restrictions about private 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   255
// values and methods, if you are MUTABLE !!!
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   256
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   257
case class BankAccount(init: Int) {
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   258
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   259
  private var balance = init
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   260
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   261
  def deposit(amount: Int): Unit = {
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   262
    if (amount > 0) balance = balance + amount
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   263
  }
238
25d896ada26c updated
updated
parents: 226
diff changeset
   264
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   265
  def withdraw(amount: Int): Int =
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   266
    if (0 < amount && amount <= balance) {
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   267
      balance = balance - amount
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   268
      balance
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   269
    } else throw new Error("insufficient funds")
238
25d896ada26c updated
updated
parents: 226
diff changeset
   270
}
25d896ada26c updated
updated
parents: 226
diff changeset
   271
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   272
// BUT since we are completely IMMUTABLE, this is 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   273
// virtually of not concern to us.
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   274
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   275
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   276
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   277
// another example about Fractions
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   278
import scala.language.implicitConversions
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   279
import scala.language.reflectiveCalls
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   280
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   281
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   282
case class Fraction(numer: Int, denom: Int) {
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   283
  override def toString = numer.toString + "/" + denom.toString
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   284
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   285
  def +(other: Fraction) = Fraction(numer + other.numer, denom + other.denom)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   286
  def /(other: Fraction) = Fraction(numer * other.denom, denom * other.numer)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   287
 }
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   288
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   289
implicit def Int2Fraction(x: Int) = Fraction(x, 1)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   290
238
25d896ada26c updated
updated
parents: 226
diff changeset
   291
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   292
val half = Fraction(1, 2)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   293
val third = Fraction (1, 3)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   294
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   295
half + third
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   296
half / third
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   297
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   298
(1 / 3) + half
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   299
(1 / 2) + third
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   300
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   301
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   302
// DFAs in Scala  
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   303
//===============
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   304
import scala.util.Try
238
25d896ada26c updated
updated
parents: 226
diff changeset
   305
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   306
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   307
// A is the state type
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   308
// C is the input (usually characters)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   309
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   310
case class DFA[A, C](start: A,              // starting state
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   311
                     delta: (A, C) => A,    // transition function
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   312
                     fins:  A => Boolean) { // final states (Set)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   313
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   314
  def deltas(q: A, s: List[C]) : A = s match {
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   315
    case Nil => q
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   316
    case c::cs => deltas(delta(q, c), cs)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   317
  }
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   318
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   319
  def accepts(s: List[C]) : Boolean = 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   320
    Try(fins(deltas(start, s))) getOrElse false
238
25d896ada26c updated
updated
parents: 226
diff changeset
   321
}
25d896ada26c updated
updated
parents: 226
diff changeset
   322
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   323
// the example shown in the handout 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   324
abstract class State
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   325
case object Q0 extends State
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   326
case object Q1 extends State
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   327
case object Q2 extends State
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   328
case object Q3 extends State
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   329
case object Q4 extends State
238
25d896ada26c updated
updated
parents: 226
diff changeset
   330
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   331
val delta : (State, Char) => State = 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   332
  { case (Q0, 'a') => Q1
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   333
    case (Q0, 'b') => Q2
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   334
    case (Q1, 'a') => Q4
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   335
    case (Q1, 'b') => Q2
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   336
    case (Q2, 'a') => Q3
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   337
    case (Q2, 'b') => Q2
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   338
    case (Q3, 'a') => Q4
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   339
    case (Q3, 'b') => Q0
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   340
    case (Q4, 'a') => Q4
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   341
    case (Q4, 'b') => Q4 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   342
    case _ => throw new Exception("Undefined") }
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   343
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   344
val dfa = DFA(Q0, delta, Set[State](Q4))
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   345
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   346
dfa.accepts("abaaa".toList)     // true
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   347
dfa.accepts("bbabaab".toList)   // true
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   348
dfa.accepts("baba".toList)      // false
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   349
dfa.accepts("abc".toList)       // false
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   350
238
25d896ada26c updated
updated
parents: 226
diff changeset
   351
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   352
// NFAs (Nondeterministic Finite Automata)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   353
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   354
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   355
case class NFA[A, C](starts: Set[A],          // starting states
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   356
                     delta: (A, C) => Set[A], // transition function
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   357
                     fins:  A => Boolean) {   // final states 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   358
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   359
  // given a state and a character, what is the set of 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   360
  // next states? if there is none => empty set
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   361
  def next(q: A, c: C) : Set[A] = 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   362
    Try(delta(q, c)) getOrElse Set[A]() 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   363
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   364
  def nexts(qs: Set[A], c: C) : Set[A] =
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   365
    qs.flatMap(next(_, c))
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   366
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   367
  // depth-first version of accepts
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   368
  def search(q: A, s: List[C]) : Boolean = s match {
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   369
    case Nil => fins(q)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   370
    case c::cs => next(q, c).exists(search(_, cs))
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   371
  }
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   372
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   373
  def accepts(s: List[C]) : Boolean =
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   374
    starts.exists(search(_, s))
238
25d896ada26c updated
updated
parents: 226
diff changeset
   375
}
25d896ada26c updated
updated
parents: 226
diff changeset
   376
25d896ada26c updated
updated
parents: 226
diff changeset
   377
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   378
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   379
// NFA examples
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   380
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   381
val nfa_trans1 : (State, Char) => Set[State] = 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   382
  { case (Q0, 'a') => Set(Q0, Q1) 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   383
    case (Q0, 'b') => Set(Q2) 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   384
    case (Q1, 'a') => Set(Q1) 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   385
    case (Q2, 'b') => Set(Q2) }
238
25d896ada26c updated
updated
parents: 226
diff changeset
   386
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   387
val nfa = NFA(Set[State](Q0), nfa_trans1, Set[State](Q2))
238
25d896ada26c updated
updated
parents: 226
diff changeset
   388
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   389
nfa.accepts("aa".toList)             // false
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   390
nfa.accepts("aaaaa".toList)          // false
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   391
nfa.accepts("aaaaab".toList)         // true
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   392
nfa.accepts("aaaaabbb".toList)       // true
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   393
nfa.accepts("aaaaabbbaaa".toList)    // false
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   394
nfa.accepts("ac".toList)             // false
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   395
238
25d896ada26c updated
updated
parents: 226
diff changeset
   396
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   397
// Q: Why the kerfuffle about the polymorphic types in DFAs/NFAs?
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   398
// A: Subset construction. Here the state type for the DFA is
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   399
//    sets of states.
238
25d896ada26c updated
updated
parents: 226
diff changeset
   400
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   401
def subset[A, C](nfa: NFA[A, C]) : DFA[Set[A], C] = {
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   402
  DFA(nfa.starts, 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   403
      { case (qs, c) => nfa.nexts(qs, c) }, 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   404
      _.exists(nfa.fins))
238
25d896ada26c updated
updated
parents: 226
diff changeset
   405
}
25d896ada26c updated
updated
parents: 226
diff changeset
   406
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   407
subset(nfa).accepts("aa".toList)             // false
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   408
subset(nfa).accepts("aaaaa".toList)          // false
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   409
subset(nfa).accepts("aaaaab".toList)         // true
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   410
subset(nfa).accepts("aaaaabbb".toList)       // true
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   411
subset(nfa).accepts("aaaaabbbaaa".toList)    // false
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   412
subset(nfa).accepts("ac".toList)             // false
238
25d896ada26c updated
updated
parents: 226
diff changeset
   413
25d896ada26c updated
updated
parents: 226
diff changeset
   414
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   415
240
2d8d198360c8 updated
Christian Urban <urbanc@in.tum.de>
parents: 238
diff changeset
   416
// The End ... Almost Christmas
238
25d896ada26c updated
updated
parents: 226
diff changeset
   417
//===============================
25d896ada26c updated
updated
parents: 226
diff changeset
   418
25d896ada26c updated
updated
parents: 226
diff changeset
   419
// I hope you had fun!
25d896ada26c updated
updated
parents: 226
diff changeset
   420
25d896ada26c updated
updated
parents: 226
diff changeset
   421
// A function should do one thing, and only one thing.
25d896ada26c updated
updated
parents: 226
diff changeset
   422
25d896ada26c updated
updated
parents: 226
diff changeset
   423
// Make your variables immutable, unless there's a good 
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   424
// reason not to. Usually there is not.
238
25d896ada26c updated
updated
parents: 226
diff changeset
   425
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   426
// I did it once, but this is actually not a good reason:
240
2d8d198360c8 updated
Christian Urban <urbanc@in.tum.de>
parents: 238
diff changeset
   427
// generating new labels:
2d8d198360c8 updated
Christian Urban <urbanc@in.tum.de>
parents: 238
diff changeset
   428
238
25d896ada26c updated
updated
parents: 226
diff changeset
   429
var counter = -1
222
ec9cbf969edf updated
Christian Urban <urbanc@in.tum.de>
parents: 218
diff changeset
   430
238
25d896ada26c updated
updated
parents: 226
diff changeset
   431
def Fresh(x: String) = {
25d896ada26c updated
updated
parents: 226
diff changeset
   432
  counter += 1
25d896ada26c updated
updated
parents: 226
diff changeset
   433
  x ++ "_" ++ counter.toString()
25d896ada26c updated
updated
parents: 226
diff changeset
   434
}
25d896ada26c updated
updated
parents: 226
diff changeset
   435
25d896ada26c updated
updated
parents: 226
diff changeset
   436
Fresh("x")
25d896ada26c updated
updated
parents: 226
diff changeset
   437
Fresh("x")
25d896ada26c updated
updated
parents: 226
diff changeset
   438
25d896ada26c updated
updated
parents: 226
diff changeset
   439
25d896ada26c updated
updated
parents: 226
diff changeset
   440
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   441
// I think you can be productive on Day 1, but the 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   442
// language is deep.
238
25d896ada26c updated
updated
parents: 226
diff changeset
   443
//
25d896ada26c updated
updated
parents: 226
diff changeset
   444
// http://scalapuzzlers.com
25d896ada26c updated
updated
parents: 226
diff changeset
   445
//
25d896ada26c updated
updated
parents: 226
diff changeset
   446
// http://www.latkin.org/blog/2017/05/02/when-the-scala-compiler-doesnt-help/
25d896ada26c updated
updated
parents: 226
diff changeset
   447
328
b217232e9246 updated
Christian Urban <urbanc@in.tum.de>
parents: 326
diff changeset
   448
val two   = 0.2
b217232e9246 updated
Christian Urban <urbanc@in.tum.de>
parents: 326
diff changeset
   449
val one   = 0.1
b217232e9246 updated
Christian Urban <urbanc@in.tum.de>
parents: 326
diff changeset
   450
val eight = 0.8
b217232e9246 updated
Christian Urban <urbanc@in.tum.de>
parents: 326
diff changeset
   451
val six   = 0.6
b217232e9246 updated
Christian Urban <urbanc@in.tum.de>
parents: 326
diff changeset
   452
b217232e9246 updated
Christian Urban <urbanc@in.tum.de>
parents: 326
diff changeset
   453
two - one == one
b217232e9246 updated
Christian Urban <urbanc@in.tum.de>
parents: 326
diff changeset
   454
eight - six == two
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   455
eight - six
328
b217232e9246 updated
Christian Urban <urbanc@in.tum.de>
parents: 326
diff changeset
   456
b217232e9246 updated
Christian Urban <urbanc@in.tum.de>
parents: 326
diff changeset
   457
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   458
// problems about equality and type-errors
328
b217232e9246 updated
Christian Urban <urbanc@in.tum.de>
parents: 326
diff changeset
   459
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   460
List(1, 2, 3).contains("your cup")   // should not compile, but retruns false
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   461
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   462
List(1, 2, 3) == Vector(1, 2, 3)     // again should not compile, but returns true
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   463
238
25d896ada26c updated
updated
parents: 226
diff changeset
   464
25d896ada26c updated
updated
parents: 226
diff changeset
   465
// I like best about Scala that it lets me often write
25d896ada26c updated
updated
parents: 226
diff changeset
   466
// concise, readable code. And it hooks up with the 
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   467
// Isabelle theorem prover. 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   468
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   469
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   470
// Puzzlers
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   471
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   472
val month = 12
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   473
val day = 24
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   474
val (hour, min, sec) = (12, 0, 0)
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   475
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   476
// use lowercase names for variable 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   477
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   478
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   479
//==================
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   480
val oneTwo = Seq(1, 2, 3).permutations
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   481
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   482
if (oneTwo.length > 0) {
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   483
  println("Permutations of 1,2 and 3:")
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   484
  oneTwo.foreach(println)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   485
}
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   486
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   487
val threeFour = Seq(3, 4, 5).permutations
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   488
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   489
if (!threeFour.isEmpty) {
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   490
  println("Permutations of 3, 4 and 5:")
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   491
  threeFour.foreach(println)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   492
}
238
25d896ada26c updated
updated
parents: 226
diff changeset
   493
326
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   494
//==================
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   495
val (a, b, c) =
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   496
    if (4 < 5) {
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   497
        "bar"
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   498
    } else { 
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   499
        Some(10)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   500
    }
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   501
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   502
//Because when an expression has multiple return branches, Scala tries to
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   503
//be helpful, by picking the first common ancestor type of all the
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   504
//branches as the type of the whole expression.
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   505
//
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   506
//In this case, one branch has type String and the other has type
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   507
//Option[Int], so the compiler decides that what the developer really
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   508
//wants is for the whole if/else expression to have type Serializable,
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   509
//since that’s the most specific type to claim both String and Option as
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   510
//descendants.
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   511
//
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   512
//And guess what, Tuple3[A, B, C] is also Serializable, so as far as the
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   513
//compiler is concerned, the assignment of the whole mess to (a, b, c)
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   514
//can’t be proven invalid. So it gets through with a warning,
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   515
//destined to fail at runtime.
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   516
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   517
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   518
//================
7d983ee99fcc updated
Christian Urban <urbanc@in.tum.de>
parents: 247
diff changeset
   519
// does not work anymore in 2.13.0
329
828326d1b3b2 updated
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   520
val numbers = List("1", "2").toSet + "3"