Java Program for Minimum move to end operations to make all strings equal Last Updated : 08 Jun, 2022 Comments Improve Suggest changes Like Article Like Report Given n strings that are permutations of each other. We need to make all strings same with an operation that takes front character of any string and moves it to the end.Examples: Input : n = 2 arr[] = {"molzv", "lzvmo"} Output : 2 Explanation: In first string, we remove first element("m") from first string and append it end. Then we move second character of first string and move it to end. So after 2 operations, both strings become same. Input : n = 3 arr[] = {"kc", "kc", "kc"} Output : 0 Explanation: already all strings are equal. The move to end operation is basically left rotation. We use the approach discussed in check if strings are rotations of each other or not to count number of move to front operations required to make two strings same. We one by one consider every string as the target string. We count rotations required to make all other strings same as current target and finally return minimum of all counts.Below is the implementation of above approach. Java // Java program to make all // strings same using move // to end operations. import java.util.*; class GFG { // Returns minimum number of // moves to end operations // to make all strings same. static int minimunMoves(String arr[], int n) { int ans = Integer.MAX_VALUE; for (int i = 0; i < n; i++) { int curr_count = 0; // Consider s[i] as target // string and count rotations // required to make all other // strings same as str[i]. String tmp = ""; for (int j = 0; j < n; j++) { tmp = arr[j] + arr[j]; // find function returns the // index where we found arr[i] // which is actually count of // move-to-front operations. int index = tmp.indexOf(arr[i]); // If any two strings are not // rotations of each other, // we can't make them same. if (index == arr[i].length()) return -1; curr_count += index; } ans = Math.min(curr_count, ans); } return ans; } // Driver code public static void main(String args[]) { String arr[] = {"xzzwo", "zwoxz", "zzwox", "xzzwo"}; int n = arr.length; System.out.println(minimunMoves(arr, n)); } } // This code is contributed // by Kirti_Mangal Output: 5 Time Complexity: O(N3) (N2 due to two nested loops used and N is for the function indexOf() used the inner for loop) Please refer complete article on Minimum move to end operations to make all strings equal for more details! Comment More infoAdvertise with us Next Article Java Program for Minimum move to end operations to make all strings equal kartik Follow Improve Article Tags : Strings Java Java Programs DSA rotation +1 More Practice Tags : JavaStrings Similar Reads DSA Tutorial - Learn Data Structures and Algorithms DSA (Data Structures and Algorithms) is the study of organizing data efficiently using data structures like arrays, stacks, and trees, paired with step-by-step procedures (or algorithms) to solve problems effectively. Data structures manage how data is stored and accessed, while algorithms focus on 7 min read Java Tutorial Java is a high-level, object-oriented programming language used to build web apps, mobile applications, and enterprise software systems. It is known for its Write Once, Run Anywhere capability, which means code written in Java can run on any device that supports the Java Virtual Machine (JVM).Java s 10 min read Java Interview Questions and Answers Java is one of the most popular programming languages in the world, known for its versatility, portability, and wide range of applications. Java is the most used language in top companies such as Uber, Airbnb, Google, Netflix, Instagram, Spotify, Amazon, and many more because of its features and per 15+ min read Java OOP(Object Oriented Programming) Concepts Java Object-Oriented Programming (OOPs) is a fundamental concept in Java that every developer must understand. It allows developers to structure code using classes and objects, making it more modular, reusable, and scalable.The core idea of OOPs is to bind data and the functions that operate on it, 13 min read Quick Sort QuickSort is a sorting algorithm based on the Divide and Conquer that picks an element as a pivot and partitions the given array around the picked pivot by placing the pivot in its correct position in the sorted array. It works on the principle of divide and conquer, breaking down the problem into s 12 min read Merge Sort - Data Structure and Algorithms Tutorials Merge sort is a popular sorting algorithm known for its efficiency and stability. It follows the divide-and-conquer approach. It works by recursively dividing the input array into two halves, recursively sorting the two halves and finally merging them back together to obtain the sorted array. Merge 14 min read Bubble Sort Algorithm Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong order. This algorithm is not suitable for large data sets as its average and worst-case time complexity are quite high.We sort the array using multiple passes. After the fir 8 min read Data Structures Tutorial Data structures are the fundamental building blocks of computer programming. They define how data is organized, stored, and manipulated within a program. Understanding data structures is very important for developing efficient and effective algorithms. What is Data Structure?A data structure is a st 2 min read Breadth First Search or BFS for a Graph Given a undirected graph represented by an adjacency list adj, where each adj[i] represents the list of vertices connected to vertex i. Perform a Breadth First Search (BFS) traversal starting from vertex 0, visiting vertices from left to right according to the adjacency list, and return a list conta 15+ min read Binary Search Algorithm - Iterative and Recursive Implementation Binary Search Algorithm is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half. The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(log N). Binary Search AlgorithmConditions to apply Binary Searc 15 min read Like