Author Archives: Tunde A

About Tunde A

My name is Tunde Ajetomobi, a Tech Enthusiast and Growth Hacker. I enjoy creating helpful content that solves problem across different topics. Codezclub is my way of helping young aspiring programmers and students to hone their skills and find solutions on fundamental programming languages.

C Program to implement DFS Algorithm for Connected Graph

DFS Algorithm for Connected Graph Write a C Program to implement DFS Algorithm for Connected Graph. Here’s simple Program for traversing a directed graph through Depth First Search(DFS),  visiting only those vertices that are reachable from start vertex. Depth First Search (DFS) Depth First Search (DFS) algorithm traverses a graph in a depthward motion and uses a… Read More »

C Program to find Connected Components in an Undirected Graph

Connected Components in an Undirected Graph Write a C Program to find Connected Components in an Undirected Graph. Here’s simple Program to Cout the Number of Connected Components in an Undirected Graph in C Programming Language. Undirected graph An undirected graph is graph, i.e., a set of objects (called vertices or nodes) that are connected together, where… Read More »

C Program to find whether an Undirected Graph is Connected or not

Find Undirected Graph is Connected or not Write a C Program to find whether an Undirected Graph is Connected or not. Here’s simple C Program to find whether an Undirected Graph is Connected or not. Undirected graph An undirected graph is graph, i.e., a set of objects (called vertices or nodes) that are connected together,… Read More »

C Program to implement BFS Algorithm for Disconnected Graph

BFS Algorithm for Disconnected Graph Write a C Program to implement BFS Algorithm for Disconnected Graph. Here’s simple Program for traversing a directed graph through Breadth First Search(BFS),  visiting all  vertices that are reachable or not reachable from start vertex. Breadth First Search (BFS) BFS is a traversing algorithm where you should start traversing from a… Read More »

C Program to implement BFS Algorithm for Connected Graph

BFS Algorithm for Connected Graph Write a C Program to implement BFS Algorithm for Connected Graph. Here’s simple Program for traversing a directed graph through Breadth First Search(BFS),  visiting only those vertices that are reachable from start vertex. Breadth First Search (BFS) BFS is a traversing algorithm where you should start traversing from a selected node (source… Read More »

9 Best Tips for choosing Right Keywords for SEO – 2017

Tips for choosing Right Keywords for SEO In order to know which Right keywords to target, it’s essential to not only understand the demand for a given term or phrase, but also the work required to achieve high rankings. If big brands take the top 10 results and you’re just starting out on the web,… Read More »

C Program to find Path Matrix by Warshall’s Algorithm

Path Matrix by Warshall’s Algorithm Write a C Program to find Path Matrix by Warshall’s Algorithm. Here’s simple Program to find Path Matrix by Warshall’s Algorithm in C Programming Language. Warshall’s Algorithm The Floyd Warshall Algorithm is for solving the All Pairs Shortest Path problem. The problem is to find shortest distances between every pair of… Read More »

C Program to find Path Matrix by powers of Adjacency matrix

Path Matrix by powers of Adjacency Matrix Write a C Program to find Path Matrix by powers of Adjacency Matrix. Here’s simple Program to find Path Matrix by powers of Adjacency Matrix in C Programming Language. Adjacency Matrix:  Adjacency Matrix is a 2D array of size V x V where V is the number of vertices… Read More »

Insertion Deletion of Vertices and Edges in Graph using Adjacency list

Insertion Deletion of Vertices and Edges in Graph Write a C Program for Insertion Deletion of Vertices and Edges in Directed Graph using Adjacency list. Here’s simple Program for Insertion Deletion of Vertices and Edges in Graph using Adjacency list in C Programming Language. Adjacency Matrix: Adjacency Matrix is a 2D array of size V x V where… Read More »

C Program to Insert Delete Edges in a Directed graph using Adjacency Matrix

Directed Graph using Adjacency Matrix Write a C Program to Insert Delete Edges in a Directed graph using Adjacency Matrix. Here’s simple Program to Insert Delete Edges in a Directed graph using Adjacency Matrix in C Programming Language. Adjacency Matrix:  Adjacency Matrix is a 2D array of size V x V where V is the number… Read More »