Java Program to Count rotations in sorted and rotated linked list Last Updated : 26 May, 2022 Comments Improve Suggest changes Like Article Like Report Given a linked list of n nodes which is first sorted, then rotated by k elements. Find the value of k. The idea is to traverse singly linked list to check condition whether current node value is greater than value of next node. If the given condition is true, then break the loop. Otherwise increase the counter variable and increase the node by node->next. Below is the implementation of this approach. Java // Program for count number of rotations in // sorted linked list. import java.util.*; class GFG { /* Linked list node */ static class Node { int data; Node next; }; // Function that count number of // rotation in singly linked list. static int countRotation(Node head) { // declare count variable and assign it 1. int count = 0; // declare a min variable and assign to // data of head node. int min = head.data; // check that while head not equal to null. while (head != null) { // if min value is greater then head.data // then it breaks the while loop and // return the value of count. if (min > head.data) break; count++; // head assign the next value of head. head = head.next; } return count; } // Function to push element in linked list. static Node push(Node head, int data) { // Allocate dynamic memory for newNode. Node newNode = new Node(); // Assign the data into newNode. newNode.data = data; // newNode.next assign the address of // head node. newNode.next = (head); // newNode become the headNode. (head) = newNode; return head; } // Display linked list. static void printList(Node node) { while (node != null) { System.out.printf("%d ", node.data); node = node.next; } } // Driver functions public static void main(String[] args) { // Create a node and initialize with null Node head = null; // push() insert node in linked list. // 15.18.5.8.11.12 head = push(head, 12); head = push(head, 11); head = push(head, 8); head = push(head, 5); head = push(head, 18); head = push(head, 15); printList(head); System.out.println(); System.out.print("Linked list rotated elements: "); // Function call countRotation() System.out.print(countRotation(head) +" "); } } // This code contributed by gauravrajput1 Output15 18 5 8 11 12 Linked list rotated elements: 2 Time Complexity: O(N), where N represents the length of the linked list.Auxiliary Space: O(1), no extra space is required, so it is a constant. Please refer complete article on Count rotations in sorted and rotated linked list for more details! Comment More infoAdvertise with us Next Article Must Do Coding Questions Company-wise K kartik Follow Improve Article Tags : Linked List Java Java Programs DSA rotation +1 More Similar Reads Interview Preparation Interview Preparation For Software Developers Must Coding Questions - Company-wise Must Do Coding Questions - Topic-wise Company-wise Practice Problems Company Preparation Competitive Programming Software Design-Patterns Company-wise Interview Experience Experienced - Interview Experiences Internship - Interview Experiences Practice @Geeksforgeeks Problem of the Day Topic-wise Practice Difficulty Level - School Difficulty Level - Basic Difficulty Level - Easy Difficulty Level - Medium Difficulty Level - Hard Leaderboard !! Explore More... Data Structures Arrays Linked List Stack Queue Binary Tree Binary Search Tree Heap Hashing Graph Advance Data Structures Matrix String All Data Structures Algorithms Analysis of Algorithms Searching Algorithms Sorting Algorithms Pattern Searching Geometric Algorithms Mathematical Algorithms Randomized Algorithms Greedy Algorithms Dynamic Programming Divide & Conquer Backtracking Branch & Bound All Algorithms Programming Languages C C++ Java Python C# Go Lang SQL PHP Scala Perl Kotlin Web Technologies HTML CSS JavaScript Bootstrap Tailwind CSS AngularJS ReactJS jQuery NodeJS PHP Web Design Web Browser File Formats Computer Science Subjects Operating Systems DBMS Computer Network Computer Organization & Architecture TOC Compiler Design Digital Elec. & Logic Design Software Engineering Engineering Mathematics Data Science & ML Complete Data Science Course Data Science Tutorial Machine Learning Tutorial Deep Learning Tutorial NLP Tutorial Machine Learning Projects Data Analysis Tutorial Tutorial Library Python Tutorial Django Tutorial Pandas Tutorial Kivy Tutorial Tkinter Tutorial OpenCV Tutorial Selenium Tutorial GATE CS GATE CS Notes Gate Corner Previous Year GATE Papers Last Minute Notes (LMNs) Important Topic For GATE CS GATE Course Previous Year Paper: CS exams Like