×

What Is Dfs Algorithm in Data Structures

DFS stands for Depth First Search. Generally, it is a repetitive or decidable type of algorithm which is basically used in identifying all the vertices or nodes of a graph or tree data structure. It begins its hunt from the initial node in the graph G and hunts deeper and deeper until it reaches its goal which is also known as the goal node or the node that has no children. Due to its repetitive or to be more precise recursive behavior, the stack data structure is used in order to implement the DFS algorithm.

The stack data structure is generally used for this kind of traversal. The stack data structure works on the LIFO principle. LIFO stands for ‘Last In First Out’. In this type of algorithm, we can generally begin from any given node or anywhere unless and until the root node is mentioned in the problem. We can consider any node as the root node.

Here are the various steps following which we can apply DFS algorithm to solve any problem:-

  1. The very first step is to construct a stack with total number of vertices in the graph.
  2. Then, we can begin by choosing any particular vertex as the initial node and push that vertex into the stack.
  3. Now, we can move ahead and push any non-explored vertex to the top of the stack.
  4. Next, we just have to repeat the steps 2 and 3 till we are left with no such vertex that we have not explored yet.
  5. After a while, when there is no such vertex left, then you can move back to the top and pop a vertex from the stack.
  6. Keep repeating steps 2,3 and 4 until the stack is completely empty.

APPLICATIONS OF DEPTH FIRST SEARCH

In this section, we are going to discuss the applications and uses of the depth first search algorithm in our day to day lives. The following are its applications:-

  1. It is generally used to find the track or route among the two vertices.
  2. They are also used in indentifying cycles in the graph.
  3. They are also used in solving one solution riddles.
  4. They are used in implementing geological sorting.
  5. It is also used for its application in finding out whether a graph is bipartite or not.

ADVANTAGES OF DFS

  • DFS is known for its very less consumption of memory space. This is generally due to the fact that the nodes which are present on the current path, only those nodes are stored.
  • It also has the capability of reaching the goal node in a very less time if it traverses on the right path.
  • It finds a solution without having to traverse much, say in the very first go.
  • It stops finding solution when it finds at least one of them.

DISADVANTAGES OF DFS

  • It seems to be a possibility that there might exist many states and they might reappear as there will be no guarantee of finding the goal node.
  • It is also possible that these states might enter into an infinite loop.

IMPLEMENTATION OF DFS

Suppose we take an example in order to explain the DFS algorithm.

Suppose we take P as the root or initial node and Z as the goal node, then we have to follow the following steps:-

Step 1: Start by pushing the initial node or H onto the stack.

WHAT IS DFS ALGORITHM?

Step 2: Now, we can pop the element from stack that is H and all its adjacent nodes.

WHAT IS DFS ALGORITHM?

Step 3: Next, we can pop the element from stack that is A and all its adjacent nodes.

WHAT IS DFS ALGORITHM?

Step 4: Now, we will POP the element D and print it and push all the adjacent nodes of D into the stack.

WHAT IS DFS ALGORITHM?

Step 5: Next, we will POP the element F and print it and push all the adjacent nodes of F into the stack.

WHAT IS DFS ALGORITHM?

Step 6: Now, we will POP the element B and print it and push all the adjacent nodes of B into the stack.

WHAT IS DFS ALGORITHM?

Step 7: Now, we will POP the element C and print it and push all the adjacent nodes of C into the stack.

WHAT IS DFS ALGORITHM?

Step 8:  Now, we will POP the element G and print it and push all the adjacent nodes of G into the stack.

WHAT IS DFS ALGORITHM?

Step 9: Now, we will POP the element E and print it and push all the adjacent nodes of E into the stack.

WHAT IS DFS ALGORITHM?

PSEUDOCODE FOR DFS

DFS(G,x) (x is the vertex from where the search will begin)
STACK Z :={}; (begin with an empty stack)
For each vertex y, set visited[y] := false;
push Z, x;
while (S is not empty) do
y:= pop Z;
if (not visited[y]) then
visited[y] := true;
for each unvisited neighbour w of yy
push Z, w;
end if
end while
END DFS()

Output:

WHAT IS DFS ALGORITHM?

COMPLEXITY OF DFS

We know that when we are talking about the complexity of DFS, we are mainly talking about the time complexity. The time complexity of this algorithm when the entire tree is explored or traversed is considered to be O(V) and we know that V stands for the total number of nodes present in that file.

Each and every node keeps a check on the list of all its neighbouring nodes and edges. Let us suppose that there are V number of nodes and E number of edges present. For every single node we explore the all the adjacent by exploring its list only a single linear time. If we talk about a directed graph, the sum of all the sizes of list that contains all the nodes is E. So, in this case the complexity will be O(V) + O(E) = O(V+E). Whereas for an undirected graph, each and every edge presents itself atleast twice. Either at the end of the list where the complexity will be O(V)+ O(2E) ~ O(V+E). if the graph is presented as a matrix then, each row is considered to be a node in the graph and that particular row is known for storing diverse information especially about the edges emerging from the node and in this case the complexity tends to be O(V*V)= O(V2).


Related Topics

Sort the linked list of 0s, 1s and 2s

Sort the linked list of 0s, 1s and 2s In this, we are given a linked list of 0s, 1s, and 2s, and we need to sort it. Examples: Input: 1  ->  1 ...

2 minutes read.

Binary Tree Uses

A binary tree is a tree data structure containing hubs with at most two children for instance a right and left child. The node at the top is insinuated as the...

3 minutes read.

Sum of Nodes in a Binary Tree

In this article, we will see the sample problems that will help us understand the concept and summation of all the nodes in the binary tree. Implementation /* creating a program that...

4 minutes read.

Hash Table vs STL Map

Hash table and STL map are extremely valuable information structures in software engineering. Here we will consider the examination between their properties to be well as execution.  To start with, we will...

7 minutes read.

Horizontal and Vertical Scaling

Being a software engineer, you would have designed a website or application and deployed it on any server. Imagine that the developed application starts getting popular, and many users engage...

6 minutes read.

How to Start Learning DSA

All programmer experiences a point along the way where they wish they could approach a problem in a more effective manner. They finally learn about the terminology DSA while trying...

10 minutes read.

Segregate Even and Odd nodes in a Linked List

Segregate even and odd nodes in a Linked List In this problem, we have given a linked list with integer numbers. We need to modify the given linked list in such...

4 minutes read.

Given a Perfect Binary Tree, Reverse Alternate Levels

Implementation //writing a program in C++ language to see how to approach it. #include <bits/stdc++.h> using namespace std; // creating a tree node. struct Nod { char ky; struct Nod *Lft, *Rt; }; // creating a new utility function...

9 minutes read.

Extended Binary Tree

An extended binary tree is a binary tree in which all the NILL subtrees present mainly in the original trees are exchanged with the special nodes that are primarily known...

3 minutes read.

Priority Queue in Data Structure

Priority Queue A priority queue is a special kind of queue, in priority queue we give some priority to an element and according to this priority an element can be served...

3 minutes read.

Data Structure Prefix to Postfix Conversion

Prefix to Postfix Conversion Prefix: As the name suggests if the operator placed before the operands called the prefix expression.  The form of prefix expression is (operator, operand1, operand2). Example:  *+EF-GH (Infix:...

2 minutes read.

Blowfish algorithm

The Blowfish algorithm is the very first encryption algorithm which is symmetric. It was firstly used as an alternate algorithm for the DES algorithm. It was designed by Bruce Steiner...

3 minutes read.

Data Structures Tutorial

The data structure is a way of storing and organizing data in a computer system. So that we can use the data quickly, which means the information is stored and...

7 minutes read.

Arrange consonants and vowels nodes in a linked list

Arrange consonants and vowels nodes in a linked list In this problem, we have given a singly linked list. Here we will arrange the consonants and vowels nodes of the list...

2 minutes read.

B Tree in Data Structure

Data management is called database management. A data model is a system that stores, manages, and optimizes computer resources. Data processing is not just about data storage. Almost every app...

9 minutes read.

Count pairs from two linked lists whose sum is equal to a given value

Count pairs from two linked lists whose sum is equal to a given value In this problem, we have given two linked lists of size n1 and n2 with distinct elements...

4 minutes read.

Semi-Structured data

In this article, we will discuss the semi-structured data. Data can be defined as the distinct piece of information that is gathered and translated for some purpose. It can be...

5 minutes read.

Red-black Tree in Data Structures?

A type of binary tree which is known as the Red-Black tree, is a specialized and unique tree. What is the urgency or, to be more precise, the necessity of...

10 minutes read.

Delete the Middle element of the Linked List in C

Delete the Middle element of the Linked List in C This article has given a singly linked list and will delete the middle element of the given linked list. Example:  The given...

3 minutes read.

String Operations in Data Structures

Operations on Strings Reversing the order of words in a sentence Reversing a string is a technique that reverses or alters the order of a given string so that the last character...

9 minutes read.