Posts Sort array with squares! (InterviewBit)
Post
Cancel

Sort array with squares! (InterviewBit)

PROBLEM DESCRIPTION

Given a sorted array A containing N integers both positive and negative.

You need to create another array containing the squares of all the elements in A and return it in non-decreasing order.

Try to this in O(N) time.

InterviewBit

SOLUTION

A straight forward solution is to create update each element with its square and then sort the array, however, that will be O(NlogN).

We can optimize it using a simple observation:

A = [-6, -3, -1, 2, 4, 5]

The first number in the result array will be either the square of highest -ve number or lowest positive number. In this case, it will be square of -1. Then the next possible element will be between the next largest -ve number and lowest positive number.

So, we can find the index of first non-negative number idx. Use two pointers l=idx-1 and r=idx and keep comparing the square values. If square of A[l] is larger, use that and decrease l. If square of A[r] is larger, use that and increment r. Do this until both are within the array bounds.

After either of them goes outside the bound, there still may be some elements left. It will be left either on left or right side but not on both side. So, no comparison is really needed, we just need to follow the same order. If elements are left on left side, fill them from right to left by decrementing l value. If elements on the right are left, fill them from left to right by incrementing the r value.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
public class Solution {

    public int[] solve(int[] A) {

        int n = A.length;

        // Find the index of the first non-negative element in the array
        int indexOfFirstNonNegative = getIndexOfFirstNonNegative(A);

        // the first possible answer can be the highest -ve number's square or least +ve number's square, so we start comparing from that position
        int l = indexOfFirstNonNegative - 1;
        int r = indexOfFirstNonNegative;

        // Initialize an array to store the result
        int[] res = new int[n];

        // Initialize an index for the result array
        int idx = 0;

        // while l and r are within the bounds
        while (l >= 0 && r < n) {

            // Calculate the squares of elements at l and r
            int o1 = A[l] * A[l];
            int o2 = A[r] * A[r];

            // Compare the squared values and store in result array accordingly
            if (o1 <= o2) {
                res[idx++] = o1;
                l--; // go to left to get the next possiible value
            } else {
                res[idx++] = o2;
                r++; // go to right to the next possible value
            }

        }

        // it's possible that there are still some remaining elements on the left or right, so we can simply copy them in that order to the result array

        // Copy the remaining elements from the left subarray, if any
        while (l >= 0) {
            res[idx++] = A[l] * A[l];
            l--;
        }

        // Copy the remaining elements from the right subarray, if any
        while (r < n) {
            res[idx++] = A[r] * A[r];
            r++;
        }

        return res;

    }

    // Function to get the index of the first non-negative element in the array
    public int getIndexOfFirstNonNegative(int[] A) {

        // Iterate through the array to find the first non-negative element
        for (int i = 0; i < A.length; i++)
            if (A[i] >= 0)
                return i;

        // If no non-negative element is found, return the length of the array
        // This will help in skipping the comparison as the index is out of bounds
        return A.length;
    }

}

OPTIMIZATION

To get the index of first non negative number, we can make use of binary search. Overall, the time complexity of the previous code will still remain O(N).

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
public int getIndexOfFirstNonNegative(int[] A) {

    int n = A.length;

    int l=0;
    int r=n-1;

    int idx = n;

    while(l<=r){

        int m = (l+r)/2;

        // the value at mid is >= 0, so record it
        // however, look for better answer which cannot be on the right of index m
        // so reduce the right to m-1
        if(A[m] >= 0){
            idx = m;
            r = m-1;
        // otherwise, left will have lower values, so look towards the right and update l to m+1
        }else{
            l = m+1;
        }

    }

    return idx;

}
This post is licensed under CC BY 4.0 by the author.