You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unless I am mistaken, the Shortest Edit Script function (ses) is not linear in the length of the input. Instead it uses quadratic space for its (mis-named) fp map, in the worst case.
By using the divide-and-conquer idea from Hirschberg, the original Myers algorithm uses linear space both for computing the edit distance D, and for computing the Shortest Edit Script, and this is also what Wu et al. claim is possible with their improved O(NP)-time algorithm.
The text was updated successfully, but these errors were encountered:
Unless I am mistaken, the Shortest Edit Script function (
ses
) is not linear in the length of the input. Instead it uses quadratic space for its (mis-named)fp
map, in the worst case.By using the divide-and-conquer idea from Hirschberg, the original Myers algorithm uses linear space both for computing the edit distance D, and for computing the Shortest Edit Script, and this is also what Wu et al. claim is possible with their improved O(NP)-time algorithm.
The text was updated successfully, but these errors were encountered: