Minimum Spanning Tree Problems
Master minimum spanning tree problems with AI-powered solutions. Get instant coding assistance during your technical interviews for all 3 problems in this category.
Total Problems: 3
Medium: 1
Hard: 2
Showing 3 of 3 problems
Problems
Scroll within this area to browse all problems
#
Title
Difficulty
Minimum Spanning Tree LeetCode Problems List
- 1706. Min Cost to Connect All Points - Medium - Minimum Spanning TreeYou are given an array points representing integer coordinates of some points on a 2D-plane, where points[i] = [xi, yi]. The cost of connecting two po... Topics: Array, Union Find, Graph, Minimum Spanning Tree
- 1613. Find Critical and Pseudo-Critical Edges in Minimum Spanning Tree - Hard - Minimum Spanning TreeGiven a weighted undirected connected graph with n vertices numbered from 0 to n - 1, and an array edges where edges[i] = [ai, bi, weighti] represents... Topics: Union Find, Graph, Sorting, Minimum Spanning Tree, Strongly Connected Component
- 3902. Maximize Spanning Tree Stability with Upgrades - Hard - Minimum Spanning TreeYou are given an integer n, representing n nodes numbered from 0 to n - 1 and a list of edges, where edges[i] = [ui, vi, si, musti]: ui and vi indicat... Topics: Binary Search, Greedy, Union Find, Graph, Minimum Spanning Tree
Related LeetCode Topics
- Array LeetCode Problems
- Backtracking LeetCode Problems
- Biconnected Component LeetCode Problems
- Binary Indexed Tree LeetCode Problems
- Binary Search LeetCode Problems
- Binary Search Tree LeetCode Problems
- Binary Tree LeetCode Problems
- Bit Manipulation LeetCode Problems
- Bitmask LeetCode Problems
- Brainteaser LeetCode Problems
- Breadth-First Search LeetCode Problems
- Bucket Sort LeetCode Problems
- Combinatorics LeetCode Problems
- Concurrency LeetCode Problems
- Counting LeetCode Problems
- Counting Sort LeetCode Problems
- Data Stream LeetCode Problems
- Database LeetCode Problems
- Depth-First Search LeetCode Problems
- Design LeetCode Problems