Data Structure

Introduction to Graphs

A graph is a non-linear data structure that consists of a collection of nodes (or vertices) and a set of links (or arcs) …

Height, Depth and Level of a Tree

Edge Edge – C onnection between one node to another. Path Path – a sequence of nodes and edges connecting a nod…

Graph

A graph is a pictorial representation of a set of objects where some pairs of objects are connected by links.  The interco…

BFS (Breadth First Search)

When a dead end occurs in any iteration, the Breadth First Search (BFS) method traverses a graph in a breadthward motion and…

DFS (Depth First Search)

Depth First Traversal When a dead end occurs in any iteration, the Depth First Search (DFS) method traverses a network i…

Searching Algorithms for Array.

Searching Algorithms for Array in Data Structure An algorithm is a step-by-step approach or method for a computer to solv…

Load More
That is All