Note: This post was originally published in 2019 and has been updated as of Feb. 18, 2022.
Algorithms are a big part of coding interviews. Whether your programming language is Python or Java, or you’re interviewing at Microsoft or Amazon, you’ll surely be asked programming interview questions to test your knowledge of data structures, algorithms, and optimization.
Today, we’ll take a look at some common algorithms that you’ll need to know for a software development interview. We’ll also cover some practice problems.
Here’s what we’ll cover today:
There’s a lot of advice out there for how to prepare that can become overwhelming. To simplify it, try focusing on meeting these 3 steps:
These are essential, timeless skills that will help you in every interview. To strengthen them, you’ll want to practice using different algorithms with coding questions.
In computer science, algorithmic paradigms are general approaches to the construction of efficient solutions to problems. In other words they are a method, strategy, or technique to solving a problem and are essential for every programmer, no matter their programming language.
These are often tested in interviews so it’s worth spending extra time reviewing each.
Algorithmic paradigms are great because they lay down a framework suited for solving a broad range of diverse problems.
For example: Backtracking
This paradigm involves solving problems by trying to build a solution incrementally, one piece at a time, removing those solutions that fail to satisfy the constraints of the problem.
Algorithm questions can cover a broad range of topics.
Each of these algorithms has a different efficiency. You’ll often be asked to find the efficiency or “complexity” an algorithm you wrote or to improve one given to you. To do this, you’ll need to use asymptotic analysis.
Complexity is an approximate measure of the efficiency of an algorithm and is associated with every algorithm you write. This is something that all programmers must be constantly aware of.
There are two kinds of complexities: time and space. Time complexity and space complexity are essentially approximations of how much time and how much space an algorithm will take to process certain inputs respectively.
Typically, there are three tiers to solve for:
Big O is preferred to analyze an algorithm, as average and best cases do not give insight to the efficiency of an algorithm for most use-cases.
If you’re in an interview and are asked to find the Big O complexity of an algorithm here is a general rule of thumb:
Example: Find the Big O complexity of an algorithm with the time complexity
This simplifies to .
There are three steps you’ll want to take when calculating the time complexity of an algorithm:
Here’s a simple example that measures the time complexity of a for loop of size n
.
Here is a loop of size n
:
#include <iostream>using namespace std;int main(){int n = 10; // 0(1)int sum = 0; // 0(1)for (int i=0; i<n; i++)sum+=2; // 0(1)cout << sum; // 0(1)return 0;}
First, split the code into individual operations and then compute how many times it is being executed, which will look like this:
After counting how many times each operation is executing, you just add all of these counts to get the time complexity of this program.
Time Complexity =
General tips for asymptotic analysis:
x
length times, it is most likely in time.Useful formulae for calculating time complexity of an algorithm:
int main(){int n = 10;int sum = 0;float pie = 3.14;for (int i=1; i<n; i+=3){cout << pie << endl;for (int j=1; j<n; J+=2){sum += 1;cout << sum << endl;}}}
Sorting and searching algorithms: Implement a function that takes two sorted arrays of variable length and finds the median of the two arrays.
Graph algorithms: Implement a function that returns the number of nodes at a given level of an undirected graph.
Greedy algorithms: Given an infinite number of quarters (25 cents), dimes (10 cents), nickels (5 cents), and pennies (1 cent), implement a function to calculate the number of COINS
to represent V
cents.
Dynamic programming algorithms:
A child is running up a staircase with n
steps and can hop either 1 step, 2 steps, or 3 steps at a time. Implement a function to count the number of possible ways that the child can run up the stairs.
Divide and conquer algorithms:
Given a 2D array of k
rows and 4 sorted columns and an empty 1D output array of size k∗n
, copy all the elements from k sorted arrays to the k∗n output array using a divide and conquer approach.
As a software engineer, you can ace rock your programming interviews by showcasing your knowledge of algorithms. As always, hands-on practice of programming questions is the best way to prepare for your interviews.
To help you ace your programming interview, we’ve created the Grokking Coding Interview Patterns in C++ course. This course covers both algorithm interview questions and data structure interview questions. You’ll practice real-world challenges and tutorials to test your understanding. You’ll learn sort algorithms as well as breadth-first search (BFS) and depth-first search (DFS) algorithm. You’ll also get hands-on practice doing various operations on binary search trees, linked lists, and hash tables.
Free Resources