Search⌘ K
AI Features

Introduction to Two Pointers

Explore the two pointers technique to understand how to traverse and manipulate linear data structures like arrays and strings. Learn to apply this pattern to solve problems such as palindrome checking, array reversing, and pair sums efficiently. This lesson helps you recognize when to use two pointers for improved algorithm performance.

About the pattern

The two pointers pattern is a versatile technique used in problem-solving to efficiently traverse or manipulate sequential data structures, such as arrays or linked lists. As the name suggests, it involves maintaining two pointers that traverse the data structure in a coordinated manner, typically starting from different positions or moving in opposite directions. These pointers dynamically adjust based on specific conditions or criteria, allowing for the efficient exploration of the data and enabling solutions with optimal time and space complexity. Whenever there’s a requirement to find two data elements in an array that satisfy a certain condition, the two pointers pattern should be the first strategy to come to mind.

The pointers can be used to iterate through the data structure in one or both directions, depending on the problem statement. For example, to identify whether a string is a palindrome, we can use one pointer to iterate the string from the beginning and the other to iterate it from the end. At each step, we can compare the values of the two pointers and see if they meet the palindrome properties.

canvasAnimation-image
1 / 5

The naive approach to solving this problem would be using nested loops, with a time complexity of O(n2)O(n^2). However, by using two pointers moving toward the middle from either end, we exploit the symmetry property of palindromic strings. This allows us to compare the elements in a single loop, making the algorithm more efficient with a time complexity of O(n)O(n).

Examples

The following examples illustrate some problems that can be solved with this approach:

  1. Reversing an array: Given an array of integers, reverse it in place.

canvasAnimation-image
1 / 9
  1. Pair with given sum in a sorted array: Given a sorted array of integers, find a pair in the array that sums to a number T.

canvasAnimation-image
1 / 5

Does your problem match this pattern?

Yes, if all of these conditions are fulfilled:

  • Linear data structure: The input data can be traversed in a linear fashion, such as an array, linked list, or string.

  • Process pairs: Process data elements at two different positions simultaneously.

  • Dynamic pointer movement: Both pointers move independently of each other according to certain conditions or criteria. In addition, both pointers might move along the same or two different data structures.

Real-world problems

Many problems in the real world use the two pointers pattern. Let’s look at an example.

  • Photo or video deduplication: In a photo or video gallery application, duplicate files can be efficiently removed using the two pointers pattern when the data is sorted (for example, by file hash). One pointer iterates through each item in the list to examine whether it is a duplicate, while the other pointer keeps track of the position where the next unique item should be placed. As the scanning pointer moves forward, only non-duplicate items are written to the position indicated by the second pointer, effectively compacting the list in place. This approach avoids the need for extra memory and ensures efficient deduplication with a single pass through the data.

Strategy time!

Match the problems that can be solved using the two pointers pattern.

Note: Select a problem in the left-hand column by clicking it, and then click one of the two options in the right-hand column.

Match The Answer
Statement
Match With
A

Given an array of integers, move all zeros to the end of the array.

Two Pointers

B

Generate a string of nn balanced parentheses.

Some other pattern

C

Find any three values in a sorted array that sum up to 825825.

D

Find all permutations of the following set of elements: {1,2,3}\{1, 2, 3\}.