siddarthjha / Minor-Project

My first project in C language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Minor-Project

My first project undertaking in C language

TOPIC: Comparitive analysis of Un-informed Search Algorithms

Implementation of

  1. DFS
  2. BFS
  3. DLS
  4. IDDFS, all these algorithms in C language and their comparison with respect to time and space complexity.

State Space Search

Set of all possible states for a given problem is known as state space of the problem.

There are two types of search:

  1. Un-informed Search
  2. Informed Search

Un-informed Search

These are such problems where we don't know any domain specific information. So we have to search without any additional knowledge of the target state. Hit and trial method.

Informed Search

In this type of problems we have prior knowledge of our target state like functions to guide the search proceedures. So we will be able to get to the target state.

Note: Knowledge in the previous context means "Derived from experience,Stores experience and change the search rules further"".

For Searching, We need

  1. Initial state description of problem.
  2. Set of legal operators[Conditions].
  3. Final (or) goal state.
  • Go through the following links for understanding of the following algorithms.
  1. DFS
  2. BFS
  3. DLS
  4. IDDFS

We have entered the following data: 65,24,78,70,96,22,39,12,23,5,15,3,10,100,85.
image
Now, we will perform search of a particular value with all four of the algorithms.


BFS

The time taken to find (96) is 35.8 sec with BFS Algorithm.


DFS

The time taken to find(96) is 30.98 sec with DFS Algorithm.


DLS

The time taken to find(96) is 34.41 sec with DLS Algorithm.


DFS

The time taken to find(96) is 27.42 sec with IDDFS Algorithm.


Alright, By seeing the different time taken by different algorithms you can see the optimized algorithm, but it's not necessary that IDDFS algorithm will give you the optimized result always.

  1. This was applied for large datasets where there may be infinite long trees and might take a lot of time to traverse in such cases IDDFS algorithm will give you the best result.
  2. For small size of data you can use DFS, and if you know the goal whether it lies on left branch (or) right branch you can select the corresponding algorithm.
  3. If the goal lies on left side then select DFS Algorithm, else you can select the BFS Algorithm to get the optimized result. And again BFS has a higher space complexity compared to DFS algorithm, So if space is a constraint then avoid using BFS Algorithm.

Note: If you have any more insight on this you can pull request. Will be happy to see your contribution :)

How to Contribute

This is an open project and contribution in all forms are welcomed. Please follow these Contribution Guidelines

Code of Conduct

Adhere to the GitHub specified community code.

About

My first project in C language


Languages

Language:C 100.0%