ac812 / mcb-python

Master repository for MCB
https://ac812.github.io/mcb-python/
1 stars 0 forks source link

Big O Notation #12

Open ac812 opened 11 months ago

ac812 commented 11 months ago

Notes from Anton: Computational Complexity - Big O Notation.

This comes up a lot in the bioinformatics algorithms where I’m trying to explain why some sequence alignment algorithms are significantly faster than others. O(mn) vs O(mn^2) or O(m+n) or O(mn^3) for multiple sequence alignment. It caused a lot of confusion.

There’s a nice example of something here: