GithubHelp home page GithubHelp logo

public class ArrayRotation { public static void rotateArray(int[] arr, int rotationCount) { int n = arr.length;

    // Normalize the rotation count
    rotationCount = rotationCount % n;
    
    // Handle edge cases
    if (rotationCount == 0) {
        return;
    }
    
    // Reverse the entire array
    reverse(arr, 0, n - 1);
    
    // Reverse the first rotationCount elements
    reverse(arr, 0, rotationCount - 1);
    
    // Reverse the remaining elements
    reverse(arr, rotationCount, n - 1);
}

private static void reverse(int[] arr, int start, int end) {
    while (start < end) {
        int temp = arr[start];
        arr[start] = arr[end];
        arr[end] = temp;
        
        start++;
        end--;
    }
}

public static void main(String[] args) {
    int[] arr = {1, 2, 3, 4, 5};
    int rotationCount = 2;
    
    rotateArray(arr, rotationCount);
    
    // Print the rotated array
    for (int i = 0; i < arr.length; i++) {
        System.out.print(arr[i] + " ");
    }
    System.out.println();
}

}

d3asbdscss's Projects

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.