Skip to content

Implemented the Wagner-Fischer algorithm in both Rust and Python, enhancing performance and cross-language compatibility for dynamic programming solutions.

Notifications You must be signed in to change notification settings

ayushshankaram/Wagner-Fischer-Distance

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Minimum Edit Distance

Info

Wagner-Fischer algorithm is a non-probabilistic, dynamic programming algorithm that computes the edit distance (Levenshtein distance) between two strings.

The edit distance between two strings gives the measure of how alike or similar two strings are to each other. There are different types of edit distance depending upon the set of string operations allowed. For example, Levenshtein distance, Longest Common Subsequence (LCS) distance, Hamming distance, etc. As the term Levenshtein distance is most common metric, it is often used interchangeably with edit distance. For more information on Levenshtein distance, refer wiki.

The minimum edit distance or the Levenshtein distance between two strings is the minimum number of editing operations (insertion, deletion, substitution) needed to transform one string into another.

The program wagner_fischer.py and main.rs are the implementations of Wagner-Fischer algorithm. The cost of edit operations can be changed with default cost as: insertion - 1, deletion - 1, substitution - 2.

Implemented Wagner-Fischer Algorithm using Rust as well as Python3.

Usage

        $ python3 wagner_fischer.py
        $ cd src
        $ rustc main.rs
        $ ./main

Matrix for Distance Calculation :

Matrix for Dist Calculation

About

Implemented the Wagner-Fischer algorithm in both Rust and Python, enhancing performance and cross-language compatibility for dynamic programming solutions.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published