Skip to content

Edlib

基于 Myers 位并行算法的快速编辑距离计算工具,支持前缀、后缀和全长比对模式。该方法在计算编辑距离和比对方面速度极快,是序列相似度估计的高效选择。

PropertyValue
Purpose快速编辑距离和序列比对
Time ComplexityO(mn / w)
Space ComplexityO(m)
Year2017
DifficultyIntermediate
LanguagesC++
CategorySequence Alignment

Complexity Analysis

  • Time Complexity: O(mn / w)
  • Space Complexity: O(m)

Performance Insight: The time complexity of this algorithm is polynomial.

Note: Complexity analysis is based on theoretical models. Actual runtime is affected by input scale, hardware, and implementation optimizations. Benchmark for your specific workload.

Literature & Implementation

parasail · SeqAn · Biopython

Tags

edit-distance bit-parallel fast myers

Released under the MIT License.