Correctness

Write: g: s to stand for all elements of the set of segmentations of a string s.

M(s) is the maximum probability of a segmentation of string s.

Can implement this directly to get a correct but exponential-time algorithm. Need to reuse results instead of recomputing over and over.

Recurrence: T(1) = 1, $T(n) = n + \sum_{i = 1}^{n-1} T(i)$.


next up previous
Next: Algorithmic Design Up: SEGMENTATION Previous: Discussion