Blog Logo
AIML Resident @ Apple
·
read
Image Source: https://analyticsindiamag.com/wp-content/uploads/2017/01/algoritms.png
· · ·

Algorithm

Any well-defined computational procedure that takes some value, or set of values, as input and produces some value, or set of values, as output. So, algorithm is a sequence of computational steps that transform the input into the output. An algorithm is correct if, for every input instance of a problem, it halts with the correct output.

Incorrect algorithms can sometimes be useful, if the error rate is controlled.

Measures of a good algorithm

  • Time Complexity: Time taken to run.
  • Space Complexity: Auxilliary space needed to run the algorithm.

Data Structures

A data structure is a way to store and organize data in order to facilitate access and modifications. No single data structure works well for all purposes, and all of them have their strengths and weeknesses.

Hard Problems

General measure of efficiency is speed for all algorithms. But some problems there are no efficient solutions known. A subset of these problems are also known as NP-complete problems. These problems have the 3 interesting properties:

  • Although no efficient algorithm for an NP-complete problem has been found, its neither been proved that an efficient algorithm for one cannot exist i.e. no one knows whether or not efficient algorithm exist for NP-complete problems.

  • If an efficient algorithm exists for any one of them, then efficient algorithms exist for the rest of them.

  • Several NP-complete problems are similar, but not identical, to problems for which efficient algorithms are known i.e. small changes in problem statements cause a big change in efficiency of the best known algorithm.

Travelling Salesman Problem is a classic example of a NP-complete problem encountered in everyday application.

REFERENCES:

Introduction to Algorithms 3rd Edition - Chapter 1

· · ·