Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
4  
Please elaborate your question a bit. What dimension has the array? What do you mean by "rotating an array"? Give an example input and output. Consider using punctuation and capital letters where appropriate. – Sven Marnach Dec 16 '10 at 3:55
What have you tried? How does it not work? IOW, you need to try first before we help (we're not going to write it form you) – KevinDTimm Dec 16 '10 at 3:57
@sven suppose input array is {1,2,3,4,5} output array after one right rotation is {5,1,2,3,4}. – algo-geeks Dec 16 '10 at 3:57
@kevin for rotating it i times we can do it in o(n^2) times but i want o(n) complexity. – algo-geeks Dec 16 '10 at 3:58
don't know why someone down voted my answer, but it's possible with a easy small algorithm in O(n)! See my answer for details. – Stuck Dec 16 '10 at 4:46

8 Answers

up vote 8 down vote accepted

You can do this in linear time by using a reverse() helper.

// rotate array of size=size, by n positions
void rotate(int array[], int size, int n)
{
  // reverse array[0...size-1]
  reverse(array, 0, size-1);

  // reverse A[0...n-1]
  reverse(array, 0, n-1);

  // reverse A[n...size-1]
  reverse(array, n, size-1);
}

// reverse elements in the array[pos_from ... pos_to]
void reverse(int array[], int pos_from, int pos_to)
{
   ...
}

Implementing reverse(int array[], int pos_from, int pos_to) using swaps is left as an exercise for the reader. Hint: This can be done in linear time.

share|improve this answer

Let us say we have a function called arr_reverse(arr,i,j) which reverses the elements of the array arr between index i and j using the swap function.

Example:

arr = {1,2,3,4,5} 
i = 0
j = 2

then the function will return:

{3,2,1,4,5} 
 ^^^^^

Implementing this function is straight forward and is O(N).

Now let's use this function in rotating the array.

arr     = {1,2,3,4,5} // input array
k       = 2 // amount of right rotation
result  = {4,5,1,2,3} // expected result 
l       = 5 // length of array.

Step 1: Call arr_reverse(arr,l-k,l-1) which is arr_reverse(arr,3,4)
we get {1,2,3,5,4} 
              ^^^

Step 2: Call arr_reverse(arr,0,l-k-1) which is arr_reverse(arr,0,2)
we get {3,2,1,5,4}
        ^^^^^     

Step 3: Call arr_reverse(arr,0,l-1) which is arr_reverse(arr,0,4)
we get {4,5,1,2,3} 
        ^^^^^^^^^

The entire process makes use of arr_reverse 3 times, making it O(N)

share|improve this answer
I think you made a typo in Step 2 and 3 of your example, where you show the result. You have the 4 and 5 flipped from what they should be. – Nixuz Dec 16 '10 at 5:32
@Nixuz: Thanks for noticing. – codaddict Dec 16 '10 at 5:42

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

share|improve this answer
i tried same soln but i want it in o(n) – algo-geeks Dec 16 '10 at 4:02
8  
@prp - Might have mentioned that in the question then, eh? – Brad Mace Dec 16 '10 at 4:12

Better use a direct and simple function, complexity N:

int rotate(int* a,int DIM,int rn,int* b) {
    int i; //counter 
    for(i=0;i<DIM;i++){ // looping through the array
        b[(i+rn)%len]=a[i]; // copying the values in the b array=a shifted with rn(+ for right or - for left shifting
}
share|improve this answer

Here's a better solution, of a different nature than the others. It involves fewer array swaps than the others. Python:

import fractions
# rotates an array in-place i positions to the left, in linear time
def rotate(arr,i):
    n = len(arr)
    reps = fractions.gcd(n,i)
    swaps = n / reps
    for start in xrange(reps):
        ix = start
        tmp = arr[ix]
        for s in xrange(swaps-1):
            previx = ix
            ix = (ix + i) % n
            arr[previx] = arr[ix]
        arr[ix] = tmp
    return arr
share|improve this answer

Using linear time O(2N+m), and constant space O(4). m = GCD(n, p)

It's up to 50% faster than the swapping approach, because swapping requires writing O(N) times to a temporary.

http://www.eis.mdx.ac.uk/staffpages/r_bornat/oldteaching/I2A/slides%209%20circshift.pdf

for (m=0, count=0; count!=n; m++) {
    type t=A[m];
    for (i=m, j=m+p; j!=m; i=j, j = j+p<n ? j+p : j+p-n, count++)
        A[i]=A[j];
    A[i]=t; count++;
}
share|improve this answer

/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package rotateinlineartime;

/** * * @author Sunshine */ public class Rotator {

void reverse(int a[], int n) {
    for (int i = 0; i <= n - 1; i++) {
        int temp;
        temp = a[i];
        a[i] = a[n - 1];
        a[n - 1] = temp;
        n--;
    }

    printArray(a);
}

void printArray(int a[]) {
    for (int i = 0; i < a.length; i++) {
        System.out.println(a[i]);
    }
}

}

share|improve this answer

why only swap function?

O(n) in time and space:

var rotateCount = 1;
var arr = new Array(1,2,3,4,5,6,7,8,9,10);

tmp = new Array(arr.length);
for (var i = 0; i<arr.length; i++)
    tmp[(i+rotateCount)%arr.length]=arr[i];
arr = tmp;

alert(arr);
share|improve this answer
why down vote?? This code works! – Stuck Dec 16 '10 at 4:32
This code doesn't work. Try rotateCount = 8, it produces: 9,10,2,3,4,5,6,7,8,1. – Nixuz Dec 16 '10 at 4:54
@Nixuz: fixed that bug – Stuck Dec 16 '10 at 5:13
Still broken, try rotateCount = 3, it'll produce: 4,5,6,7,8,9,10,2,3,1. – Nixuz Dec 16 '10 at 5:19
Also, you really should test your code before posting it. It took me 3 seconds to test this and see that it doesn't work. – Nixuz Dec 16 '10 at 5:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.