09. Sort 0s, 1s, and 2s

The problem can be found at the following link: Question Link

Note: Sorry for uploading late, my exam is going on.

Problem Description

Given an array arr containing only 0s, 1s, and 2s, sort the array in ascending order.

Example:

Input:

arr = [0, 2, 1, 2, 0]

Output:

0 0 1 2 2

Explanation: 0s, 1s, and 2s are segregated into ascending order.

Input:

arr = [0, 1, 0]

Output:

0 0 1

Explanation: 0s, 1s, and 2s are segregated into ascending order.

My Approach

  1. Three-Pointer Approach:

    • Use three pointers low, mid, and high to partition the array into three segments: 0s, 1s, and 2s.

  2. Initialization:

    • low and mid pointers start at the beginning of the array, while the high pointer starts at the end of the array.

  3. Partitioning:

    • Iterate through the array using the mid pointer:

      • If arr[mid] is 0, swap arr[mid] with arr[low], increment both low and mid.

      • If arr[mid] is 1, simply move the mid pointer forward.

      • If arr[mid] is 2, swap arr[mid] with arr[high] and decrement high.

  4. Final Array:

    • After the loop, the array will be sorted in ascending order with all 0s, 1s, and 2s in their respective positions.

Time and Auxiliary Space Complexity

  • Expected Time Complexity: O(n), where n is the length of the array. Each element is processed at most once.

  • Expected Auxiliary Space Complexity: O(1), as we only use a constant amount of additional space for pointers.

Code (C++)

Code (Java)

Code (Python)

Contribution and Support

For discussions, questions, or doubts related to this solution, please visit my LinkedIn:- Any Questions. Thank you for your input; together, we strive to create a space where learning is a collaborative endeavor.

⭐ Star this repository if you find it helpful or intriguing! ⭐


📍Visitor Count


Last updated