Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement and compare minimum spanning tree algorithms #26

Open
1 of 8 tasks
krzysztof-turowski opened this issue Jul 10, 2024 · 0 comments
Open
1 of 8 tasks

Implement and compare minimum spanning tree algorithms #26

krzysztof-turowski opened this issue Jul 10, 2024 · 0 comments
Labels
algorithms New feature or request documentation Improvements or additions to documentation

Comments

@krzysztof-turowski
Copy link
Owner

krzysztof-turowski commented Jul 10, 2024

Implement minimum spanning tree algorithms, for example:

  • Chi-Chin Yao (1975) - An $O(|E| \log \log |V|)$ Algorithm for Finding Minimum Spanning Trees - $O(m \log{\log{n}})$ time
  • Fredman, Tarjan (1987) - Fibonacci heaps and their uses in improved network optimization algorithms - $O(m \beta(m, n))$ time
  • Gabow, Galil, Spencer, Tarjan (1986) - Efficient algorithms for finding minimum spanning trees in undirected and directed graphs - $O(m \log{\beta(m, n)})$ time
  • Karger, Klein, Tarjan (1995) - A randomized linear-time algorithm to find minimum spanning trees - expected $O(m + n)$ time
  • Chazelle (1997) - A faster deterministic algorithm for minimum spanning trees - $O(m \alpha(m, n) \log{\alpha(m, n)})$ time
  • Chazelle (2000) - A minimum spanning tree algorithm with inverse-Ackermann type complexity - $O(m \alpha(m, n))$ time
  • Pettie, Ramachadran (2002) - An optimal minimum spanning tree algorithm

Also approximate algorithms, such as:

  • Chazelle, Rubinfeld, Trevisan (2005) - Approximating the Minimum Spanning Tree Weight in Sublinear Time
@krzysztof-turowski krzysztof-turowski added documentation Improvements or additions to documentation algorithms New feature or request labels Jul 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
algorithms New feature or request documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

1 participant