alex-gru / edit-distance

Investigating approaches for computing Edit Distance of 2 strings

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

edit-distance

Investigating approaches for computing Edit Distance of 2 strings

  • brute force (exponential)
  • dynamic programming O(m*n) time+space
  • dynamic programming with optimized space complexity O(m) (wlog m < n)

Implemented during preparation for final exam on "Similarity Search VO" held by Prof. Nikolaus Augsten (Database Research Group)

Course website: https://dbresearch.uni-salzburg.at/teaching/2016ws/ssdb/

Dept. of CS, University of Salzburg, Austria

About

Investigating approaches for computing Edit Distance of 2 strings


Languages

Language:Java 100.0%