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