Inheritance diagram for AbstractStringEditDistance:Public Types | |
| enum | Operation { DELETE, INSERT, REPLACE, MATCH } |
Public Methods | |
| abstract Result | align (int[] s, int[] t) |
Protected Methods | |
| List< Operation > | operations (int[][] d, int i, int j, List< Operation > operations) |
| List< Intervall > | intervall (List< Operation > operations, Operation gap) |
Protected Attributes | |
| int | match |
| int | replace |
| int | delete |
| int | insert |
| enum Operation |
| abstract Result align | ( | int[] | s, |
| int[] | t | ||
| ) | [pure virtual] |
Implemented in Levenshtein, and Needleman.
int delete [protected] |
int insert [protected] |
int match [protected] |
int replace [protected] |