progs/re1.scala
author Christian Urban <urbanc@in.tum.de>
Thu, 23 Mar 2017 14:49:26 +0000
changeset 481 acd8780bfc8b
parent 480 9e42ccbbd1e6
parent 479 52aa298211f6
child 498 ea47c3b8f35f
permissions -rw-r--r--
merged
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
477
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
     1
// Simple matcher for basic regular expressions
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
     2
469
1f4e81950ab4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 467
diff changeset
     3
54
485f38b530ab updated
Christian Urban <urbanc@in.tum.de>
parents: 49
diff changeset
     4
abstract class Rexp
471
9476086849ad updated
Christian Urban <urbanc@in.tum.de>
parents: 469
diff changeset
     5
case object ZERO extends Rexp                    // matches nothing
9476086849ad updated
Christian Urban <urbanc@in.tum.de>
parents: 469
diff changeset
     6
case object ONE extends Rexp                     // matches the empty string
9476086849ad updated
Christian Urban <urbanc@in.tum.de>
parents: 469
diff changeset
     7
case class CHAR(c: Char) extends Rexp            // matches a character c
9476086849ad updated
Christian Urban <urbanc@in.tum.de>
parents: 469
diff changeset
     8
case class ALT(r1: Rexp, r2: Rexp) extends Rexp  // alternative
9476086849ad updated
Christian Urban <urbanc@in.tum.de>
parents: 469
diff changeset
     9
case class SEQ(r1: Rexp, r2: Rexp) extends Rexp  // sequence
9476086849ad updated
Christian Urban <urbanc@in.tum.de>
parents: 469
diff changeset
    10
case class STAR(r: Rexp) extends Rexp            // star
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
471
9476086849ad updated
Christian Urban <urbanc@in.tum.de>
parents: 469
diff changeset
    12
// nullable function: tests whether a regular 
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    13
// expression can recognise the empty string
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    14
def nullable (r: Rexp) : Boolean = r match {
424
1129024b26d5 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 422
diff changeset
    15
  case ZERO => false
1129024b26d5 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 422
diff changeset
    16
  case ONE => true
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    17
  case CHAR(_) => false
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    18
  case ALT(r1, r2) => nullable(r1) || nullable(r2)
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    19
  case SEQ(r1, r2) => nullable(r1) && nullable(r2)
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    20
  case STAR(_) => true
453
36e5752fa191 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 440
diff changeset
    21
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    22
}
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    23
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    24
// derivative of a regular expression w.r.t. a character
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    25
def der (c: Char, r: Rexp) : Rexp = r match {
424
1129024b26d5 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 422
diff changeset
    26
  case ZERO => ZERO
1129024b26d5 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 422
diff changeset
    27
  case ONE => ZERO
1129024b26d5 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 422
diff changeset
    28
  case CHAR(d) => if (c == d) ONE else ZERO
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    29
  case ALT(r1, r2) => ALT(der(c, r1), der(c, r2))
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    30
  case SEQ(r1, r2) => 
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    31
    if (nullable(r1)) ALT(SEQ(der(c, r1), r2), der(c, r2))
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    32
    else SEQ(der(c, r1), r2)
440
e14cd32ad497 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 434
diff changeset
    33
  case STAR(r1) => SEQ(der(c, r1), STAR(r1))
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    34
}
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    35
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    36
// derivative w.r.t. a string (iterates der)
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    37
def ders (s: List[Char], r: Rexp) : Rexp = s match {
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    38
  case Nil => r
54
485f38b530ab updated
Christian Urban <urbanc@in.tum.de>
parents: 49
diff changeset
    39
  case c::s => ders(s, der(c, r))
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    40
}
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    41
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    42
// main matcher function
261
24531cfaa36a updated handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    43
def matches(r: Rexp, s: String) : Boolean = nullable(ders(s.toList, r))
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    44
477
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
    45
424
1129024b26d5 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 422
diff changeset
    46
//examples from the homework
477
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
    47
343
539b2e88f5b9 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 261
diff changeset
    48
val r = STAR(ALT(SEQ(CHAR('a'), CHAR('b')), CHAR('b')))
539b2e88f5b9 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 261
diff changeset
    49
der('a', r)
539b2e88f5b9 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 261
diff changeset
    50
der('b', r)
539b2e88f5b9 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 261
diff changeset
    51
der('c', r)
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    52
477
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
    53
//optional regular expression (one or zero times)
424
1129024b26d5 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 422
diff changeset
    54
def OPT(r: Rexp) = ALT(r, ONE)
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    55
477
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
    56
//n-times regular expression (explicitly expanded)
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    57
def NTIMES(r: Rexp, n: Int) : Rexp = n match {
424
1129024b26d5 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 422
diff changeset
    58
  case 0 => ONE
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    59
  case 1 => r
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    60
  case n => SEQ(r, NTIMES(r, n - 1))
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    61
}
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    62
477
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
    63
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
    64
// Test Cases
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
    65
258
1e4da6d2490c updated programs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 119
diff changeset
    66
// the evil regular expression  a?{n} a{n}
415
4ae59fd3b174 updated
Christian Urban <urbanc@in.tum.de>
parents: 363
diff changeset
    67
def EVIL1(n: Int) = SEQ(NTIMES(OPT(CHAR('a')), n), NTIMES(CHAR('a'), n))
422
5deefcc8cffa updated programs
Christian Urban <urbanc@in.tum.de>
parents: 415
diff changeset
    68
5deefcc8cffa updated programs
Christian Urban <urbanc@in.tum.de>
parents: 415
diff changeset
    69
// the evil regular expression (a*)*b
440
e14cd32ad497 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 434
diff changeset
    70
val EVIL2 = SEQ(STAR(STAR(CHAR('a'))), CHAR('b'))
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    71
258
1e4da6d2490c updated programs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 119
diff changeset
    72
//for measuring time
469
1f4e81950ab4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 467
diff changeset
    73
def time_needed[T](i: Int, code: => T) = {
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    74
  val start = System.nanoTime()
469
1f4e81950ab4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 467
diff changeset
    75
  for (j <- 1 to i) code
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    76
  val end = System.nanoTime()
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    77
  (end - start)/(i * 1.0e9)
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    78
}
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    79
480
9e42ccbbd1e6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
    80
434
8664ff87cd77 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 433
diff changeset
    81
//test: (a?{n}) (a{n})
433
c08290ee4f1f updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 424
diff changeset
    82
for (i <- 1 to 20) {
c08290ee4f1f updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 424
diff changeset
    83
  println(i + ": " + "%.5f".format(time_needed(2, matches(EVIL1(i), "a" * i))))
c08290ee4f1f updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 424
diff changeset
    84
}
c08290ee4f1f updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 424
diff changeset
    85
415
4ae59fd3b174 updated
Christian Urban <urbanc@in.tum.de>
parents: 363
diff changeset
    86
for (i <- 1 to 20) {
4ae59fd3b174 updated
Christian Urban <urbanc@in.tum.de>
parents: 363
diff changeset
    87
  println(i + ": " + "%.5f".format(time_needed(2, matches(EVIL1(i), "a" * i))))
49
d2c6852ca8da added programs and slides
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    88
}
363
0d6deecdb2eb updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 343
diff changeset
    89
434
8664ff87cd77 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 433
diff changeset
    90
//test: (a*)* b
440
e14cd32ad497 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 434
diff changeset
    91
for (i <- 1 to 20) {
434
8664ff87cd77 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 433
diff changeset
    92
  println(i + " " + "%.5f".format(time_needed(2, matches(EVIL2, "a" * i))))
8664ff87cd77 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 433
diff changeset
    93
}
8664ff87cd77 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 433
diff changeset
    94
440
e14cd32ad497 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 434
diff changeset
    95
for (i <- 1 to 20) {
415
4ae59fd3b174 updated
Christian Urban <urbanc@in.tum.de>
parents: 363
diff changeset
    96
  println(i + " " + "%.5f".format(time_needed(2, matches(EVIL2, "a" * i))))
4ae59fd3b174 updated
Christian Urban <urbanc@in.tum.de>
parents: 363
diff changeset
    97
}
363
0d6deecdb2eb updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 343
diff changeset
    98
477
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
    99
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   100
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   101
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   102
// size of a regular expressions - for testing purposes 
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   103
def size(r: Rexp) : Int = r match {
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   104
  case ZERO => 1
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   105
  case ONE => 1
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   106
  case CHAR(_) => 1
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   107
  case ALT(r1, r2) => 1 + size(r1) + size(r2)
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   108
  case SEQ(r1, r2) => 1 + size(r1) + size(r2)
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   109
  case STAR(r) => 1 + size(r)
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   110
}
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   111
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   112
// the expicit expansion in EVIL1(n) increases
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   113
// drastically its size
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   114
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   115
size(EVIL1(1))  // 5
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   116
size(EVIL1(3))  // 17
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   117
size(EVIL1(5))  // 29
b78664a24f5d updated
Christian Urban <urbanc@in.tum.de>
parents: 471
diff changeset
   118
size(EVIL1(7))  // 41
479
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   119
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   120
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   121
// given a regular expression and building successive
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   122
// derivatives might result into bigger and bigger
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   123
// regular expressions...here is an example for this:
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   124
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   125
val BIG_aux = STAR(ALT(CHAR('a'), CHAR('b')))
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   126
val BIG = SEQ(BIG_aux, SEQ(CHAR('a'),SEQ(CHAR('b'), BIG_aux)))
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   127
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   128
size(ders("".toList, BIG))              // 13
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   129
size(ders("ab".toList, BIG))            // 51
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   130
size(ders("abab".toList, BIG))          // 112
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   131
size(ders("ababab".toList, BIG))        // 191
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   132
size(ders("abababab".toList, BIG))      // 288
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   133
size(ders("ababababab".toList, BIG))    // 403
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   134
size(ders("abababababab".toList, BIG))  // 536
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   135
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   136
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   137
size(ders(("ab" * 200).toList, BIG))    // 366808
52aa298211f6 updated
Christian Urban <urbanc@in.tum.de>
parents: 477
diff changeset
   138