Kruskal’s algorithm

Kruskal’s algorithm is another popular algorithm for finding the minimum spanning tree (MST) of a weighted undirected graph. It is based on sorting the edges … Read more

Prims algorithm

Prim’s algorithm is a greedy algorithm used to find the minimum spanning tree (MST) of a weighted undirected graph. A minimum spanning tree is a … Read more

Linear search

The linear search algorithm, also known as sequential search, is a simple searching algorithm that checks each element in a collection until the target element … Read more

Theta notation

What is Theta notation Theta notation (Θ) is a mathematical notation used in computer science to describe the tight bound or the asymptotically tight behavior … Read more