Algorithm to rotate an array in linear time

后端 未结 22 1914
我寻月下人不归
我寻月下人不归 2020-11-28 05:05

How to rotate an integer array by i times using swap function only in linear time.

相关标签:
22条回答
  • 2020-11-28 05:52
    void reverse_array(int a[], int start, int end){
    
        while(start < end){     
                int temp =  a[start];
                a[start] = a[end];
                a[end] = temp;
                start++;
                end--;
        }
    

    }

    void rotate_array(int a[], int pivot, int len){
        int i;
        /*Reverse the whole array */
        reverse_array(a, 0, len);
    
        /* Reverse from 0 to pivot and pivot to end */
        reverse_array(a,0, pivot);
        reverse_array(a,pivot+1,len);
    

    }

    0 讨论(0)
  • 2020-11-28 05:53

    a naive pseudocode implementation:

    for (n = 0; n < i; n++) {
        for (j = array.length-1; j > n; j--)
            swap(j, j-1)
    }
    

    Repeatedly moves the last element to the front, stopping before it moves anything previously moved to the front

    0 讨论(0)
  • 2020-11-28 05:54

    My solution with java

    static int[] rotLeft(int[] a, int d) {
        for (int i = 0; i < d; i++) {
            oneRotation(a);
        }
        return a;
    }
    
    static void oneRotation(int[] a) {
        int firstElement = a[0];
        for (int i = 0; i < a.length - 1; i++) {
            a[i] = a[i + 1];
        }
        a[a.length - 1] = firstElement;
    }
    
    0 讨论(0)
  • 2020-11-28 05:55
    Simple Solution in O(n) time and using O(1) space:
    for e.g 1,2,3,4,5,6,7
    rotating 2 times 
    start with index 2, store a[0] as last
    Iteration 1: 1,2,1,4,3,6,5 (1-->3-->5-->7)
    Iteration 2: 1,7,1,2,3,4,5 (2-->4-->6)
    replace 1 with 6 (last value).
    
    public int[] roatateArray(int[] a,int k)
    {
        int last = a[0];
        int start = k;
        for(int j=0;j<k;j++) {
        for(int i=start;i<a.length;i+=k)
        {
            int tmp=a[i];
            a[i]=last;
            last=tmp;
        }
        start--;
        if (start<=0) break;
        }
        a[0]=last;
        return a;
    }
    
    0 讨论(0)
  • 2020-11-28 05:59
    /* Q: How can we shift/rotate an array in place?
    A: "in place" means O(1) space complexity, so we need to do some trick
     */
    
    #include <iostream>
    #include <algorithm>
    using namespace std;
    
    void ArrayRotate(int a[], int n, int k)
    {
        if (n < 1 || k % n == 0 ) return;
    
        k %= n;
        if (k < 0) k += n;
    
        reverse(a, a+k);
        reverse(a+k, a+n);
        reverse(a, a+n);
    }
    
    void PrintArray(int a[], int n)
    {
        for ( int i = 0 ; i < n; ++i)
            cout << a[i] << " ";
        cout << endl;
    }
    
    int main()
    {
        int a[] = { 1, 2 , 3, 4, 5 };
        int n = sizeof(a)/sizeof (a[0]);
    
        PrintArray(a, n);
        ArrayRotate(a, n, 2);
        PrintArray(a, n);
    
        return 0;
    }
    /* Output:
    1 2 3 4 5
    3 4 5 1 2
     */
    
    0 讨论(0)
  • 2020-11-28 06:00

    Short Answer (python code)

    def reverse(arr, i, j):
        for idx in xrange((j - i + 1) / 2):
            arr[i+idx], arr[j-idx] = arr[j-idx], arr[i+idx]
    
    def solution(A, K):
        l = len(A)
        if l == 0:
            return []
        K = K%l
        reverse(A, l - K, l -1)
        reverse(A, 0, l - K -1)
        reverse(A, 0, l - 1)
        return A
    

    Long Answer (code explanation)

    Let me talk first the base case with K < N, the idea in this case is to split the array in two parts A and B, A is the first N-K elements array and B the last K elements. the algorithm reverse A and B separately and finally reverse the full array (with the two part reversed separately). To manage the case with K > N, think that every time you reverse the array N times you obtain the original array again so we can just use the module operator to find where to split the array (reversing only the really useful times avoiding useless shifting).

    A graphical step by step example can help understanding better the concept. Note that

    • The bold line indicate the the splitting point of the array (K = 3 in this example);
    • The two red array indicate, respectively, the input and the expected output.

    Starting from:

    look that what we want in front of the final output will be the last 3 letter reversed, for now let reverse it in place (first reverse of the algorithm):

    now reverse the first N-K elements (second reverse of the algorithm):

    we already have the solution but in the opposite direction, we can solve it reversing the whole array (third and last reverse of the algorithm):

    Here the final output, the original array cyclical rotated with K = 3.

    Let give also another step by step example with python code, starting from:

    A = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
    K = 22
    N = len(A)
    

    we find the splitting index:

    K = K%N
    #2
    

    because, in this case, the first 20 shift will be useless, now we reverse the last K (2) elements of the original array:

    reverse(A, N-K, N-1)
    # [1, 2, 3, 4, 5, 6, 7, 8, 10, 9]
    

    as you can see 9 and 10 has been shift, now we reverse the first N-K elements:

    reverse(A, 0, N-K-1)
    # [8, 7, 6, 5, 4, 3, 2, 1, 10, 9]
    

    And, finally, we reverse the full array:

    reverse(A, 0, N-1)
    # [9, 10, 1, 2, 3, 4, 5, 6, 7, 8]
    

    Note that reversing an array have time complexity O(N).

    0 讨论(0)
提交回复
热议问题