Algorithms

FIELDS OF STUDY

Computer Science; Operating Systems; Software Engineering

ABSTRACT

An algorithm is set of precise, computable instructions that, when executed in the correct order, will provide a solution to a certain problem. Algorithms are widely used in mathematics and engineering, and understanding the design of algorithms is fundamental to computer science.

PRINICIPAL TERMS

AN ANCIENT IDEA

The term “algorithm” is derived from the name al-Khwarizmi. Muhammad ibn Musa al- Khwarizmi was a ninth-century Persian mathematician who is credited with introducing the decimal system to the West. He has been celebrated around the world as a pioneer of mathematics and conceptual problem solving.

“Algorithm” has no precise definition. Broadly, it refers to a finite set of instructions, arranged in a specific order and described in a specific language, for solving a particular problem. In other words, an algorithm is like a plan or a map that tells a person or a machine what steps to take in order to complete a given task.

In computer science, an algorithm is a series of instructions that tells a computer to perform a certain function, such as sorting, calculating, or finding data. Each step in the instructions causes the computer to transition from one state to another until it reaches the desired end state.

Any procedure that takes a certain set of inputs (a data list, numbers, information, etc.) and reaches a desired goal (finding a specific datum, sorting the list, etc.) is an algorithm. However, not all algorithms are equal. Algorithms can be evaluated for “elegance,” which measures the simplicity of the coding. An elegant algorithm is one that takes a minimum number of steps to complete. Algorithms can also be evaluated in terms of “goodness,” which measures the speed with which an algorithm reaches completion.




Algorithms are a set of operations or a procedure for solving a problem or processing data. Flowcharts are often used as a visualization of the process, showing the order in which steps are performed. EBSCO illustration.





Algorithms are a set of operations or a procedure for solving a problem or processing data. Flowcharts are often used as a visualization of the process, showing the order in which steps are performed.
EBSCO illustration.

Algorithms often specify conditional processes that occur only when a certain condition has been met. For instance, an algorithm about eating lunch might begin with the question, “Are you hungry?” If the answer is “yes,” the algorithm will instruct the user to eat a sandwich. It will then ask again if the user is hungry. If the answer is still yes, the “eat a sandwich” instruction will be repeated. If the answer is “no,” the algorithm will instruct the user to stop eating sandwiches. In this example, the algorithm repeats the “eat a sandwich” step until the condition “not hungry” is reached, at which point the algorithm ends.

TYPES OF ALGORITHMS

Various types of algorithms take different approaches to solving problems. An iterative algorithm is a simple form of algorithm that repeats the same exact steps in the same way until the desired result is obtained. A recursive algorithm attempts to solve a problem by completing smaller instances of the same problem. One example of a recursive algorithm is called a “divide and conquer” algorithm. This type of algorithm addresses a complex problem by solving less complex examples of the same problem and then combining the results to estimate the correct solution.

Algorithms can also be serialized, meaning that the algorithm tells the computer to execute one instruction at a time in a specific order. Other types of algorithms may specify that certain instructions should be executed simultaneously. Distributed algorithms are an example of this type. Different parts of the algorithm are executed in multiple computers or nodes at once and then combined.

An algorithm may have a single, predetermined output, or its output may vary based on factors other than the input. Deterministic algorithms use exact, specific calculations at every step to reach an answer to a problem. A computer running a deterministic algorithm will always proceed through the same sequence of states. Nondeterministic algorithms incorporate random data or “guessing” at some stage of the process. This allows such algorithms to be used as predictive or modeling tools, investigating problems for which specific data is lacking. In computational biology, for instance, evolutionary algorithms can be used to predict how populations will change over time, given estimations of population levels, breeding rates, and other environmental pressures.

ALGORITHM APPLICATIONS

One of the most famous applications of algorithms is the creation of “search” programs used to find information on the Internet. The Google search engine can search through vast amounts of data and rank millions of search results in a specific order for different users. Sorting large lists of data was one of the earliest problems that computer scientists attempted to solve using algorithms. In the 1960s, the quicksort algorithm was the most successful sorting algorithm. Using a random element from the list as a “pivot,” quicksort tells the computer to pick other elements from the list and compare them to the pivot. If the element is less than the pivot, it is placed above it; if it is greater, it is placed below. The process is repeated until each pivot is in its proper place and the data is sorted into a list. Computer scientists are still attempting to find search and sorting algorithms that are more “elegant” or “good” in terms of completing the function quickly and with the least demand on resources.

Searching and sorting are the most famous examples of algorithms. However, these are just two of the thousands of algorithm applications that computer scientists have developed. The study of algorithm design has become a thriving subfield within computer science.

—Micah L. Issitt

“Intro to Algorithms.” Khan Academy. Khan Acad., 2015. Web. 19 Jan. 2016.

Anthes, Gary. “Back to Basics: Algorithms.”

Computerworld. Computerworld, 24 Mar. 2008. Web. 19 Jan. 2016.

Bell, Tim, et al. “Algorithms.” Computer Science Field Guide.

U of Canterbury, 3 Feb. 2015. Web. 19Jan. 2016.

Cormen, Thomas H. Algorithms Unlocked. Cambridge: MIT P, 2013. Print.

Cormen, Thomas H., et al. Introduction to Algorithms. 3rd ed. Cambridge: MIT P, 2009. Print.

Toal, Ray. “Algorithms and Data Structures.” Ray Toal. Loyola Marymount U, n.d. Web. 19 Jan. 2016.