How to rotate an integer array by i times using swap function only in linear time.
|
|
You can do this in linear time by using a reverse() helper.
Implementing |
||||
|
|
|
Let us say we have a function called Example:
then the function will return:
Implementing this function is straight forward and is Now let's use this function in rotating the array.
The entire process makes use of |
||||
|
a naive pseudocode implementation:
Repeatedly moves the last element to the front, stopping before it moves anything previously moved to the front |
|||||||
|
|
Better use a direct and simple function, complexity N:
|
||||
|
|
|
Here's a better solution, of a different nature than the others. It involves fewer array swaps than the others. Python:
|
|||
|
|
|
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
|
|||
|
|
|
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package rotateinlineartime; /** * * @author Sunshine */ public class Rotator {
} |
|||
|
|
|
why only swap function? O(n) in time and space:
|
||||