Java Program to Implement Sorted Circularly Singly Linked List

This is a Java Program to implement a Sorted Circular Singly Linked List. A linked list is a data structure consisting of a group of nodes which together represent a sequence. Under the simplest form, each node is composed of a data and a reference (in other words, a link) to the next node in the sequence. This structure allows for efficient insertion or removal of elements from any position in the sequence. In a sorted circular singly linked list each node has only one link pointing to the next node and last node points to first node and insertion of an element into the list is done in a sorted fashion.

Here is the source code of the Java program to implement Sorted Circular Singly Linked List. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.

/*
 *  Java Program to Implement Sorted Circular Singly Linked List
 */
 
import java.util.Scanner;
 
/*  Class Node  */
class Node
{
    protected int data;
    protected Node link;
 
    /*  Constructor  */
    public Node()
    {
        link = null;
        data = 0;
    }    
    /*  Constructor  */
    public Node(int d,Node n)
    {
        data = d;
        link = n;
    }    
    /*  Function to set link to next Node  */
    public void setLink(Node n)
    {
        link = n;
    }    
    /*  Function to set data to current Node  */
    public void setData(int d)
    {
        data = d;
    }    
    /*  Function to get link to next node  */
    public Node getLink()
    {
        return link;
    }    
    /*  Function to get data from current Node  */
    public int getData()
    {
        return data;
    }
}
class linkedList
{
    protected Node start, end;
    public int size;
    public linkedList()
    {
        start = null;
        end = null;
        size = 0;
    }
    /*  Function to check if list is empty  */
    public boolean isEmpty()
    {
        return start == null;
    }
    /*  Function to check size of list  */
    public int getSize()
    {
        return size;
    }    
    /*  Function to insert an element  */
    public void insert(int val)
    {
        Node nptr, ptr, tmp = null;
        nptr = new Node(val, null);
        boolean ins = false;
        if (start == null)
        {
            start = nptr;
            nptr.setLink(start);
            end = start;
        }
        else if (val <= start.getData())
        {
            nptr.setLink(start);
            end.setLink(nptr);
            start = nptr;
        }
        else if (val >= end.getData())
        {
            end.setLink(nptr);
            nptr.setLink(start);
            end = nptr;
        }
        else
        {
            tmp = start;
            ptr = start.getLink();
            while (tmp != end)
            {
                if (val >= tmp.getData() && val <= ptr.getData())
                {
                    tmp.setLink(nptr);
                    nptr.setLink(ptr);
                    ins = true;
                    break;
                }
                else
                {
                    tmp = ptr;
                    ptr = ptr.getLink();
                }
            }
            if (ins == false)
            {
                tmp.setLink(nptr);
            }
        }
        size++;
    }
    /*  Function to delete an element at position  */
    public void deleteAtPos(int pos)
    {        
        if (pos == 1 && size == 1)
        {
            start = null;
            end = null;
            size = 0;
            return;
        }
        if (pos == 1) 
        {
            start = start.getLink();
            end.setLink(start);
            size--; 
            return ;
        }
        if (pos == size) 
        {
            Node ptr = start;
 
            for (int i = 1; i < size - 1; i++)
                ptr = ptr.getLink();
            ptr.setLink(start);
            end = ptr;            
            size --;
            return;
        }
        Node ptr = start;
        pos = pos - 1 ;
        for (int i = 1; i < size - 1; i++) 
        {
            if (i == pos) 
            {
                Node tmp = ptr.getLink();
                tmp = tmp.getLink();
                ptr.setLink(tmp);
                break;
            }
            ptr = ptr.getLink();
        }
        size-- ;
    }    
    /*  Function to display elements  */
    public void display()
    {
        System.out.print("Sorted Circular Singly Linked List = ");
        Node ptr = start;
        if (size == 0) 
        {
            System.out.print("empty\n");
            return;
        }
        if (start.getLink() == start) 
        {
            System.out.print(start.getData()+ "->"+ptr.getData()+ "\n");
            return;
        }
        System.out.print(start.getData()+ "->");
        ptr = start.getLink();
        while (ptr.getLink() != start) 
        {
            System.out.print(ptr.getData()+ "->");
            ptr = ptr.getLink();
        }
        System.out.print(ptr.getData()+ "->");
        ptr = ptr.getLink();
        System.out.print(ptr.getData()+ "\n");
    }    
}
public class SortedCircularSinglyLinkedList
{
    public static void main(String[] args)
    {             
        Scanner scan = new Scanner(System.in);
        linkedList list = new linkedList(); 
        System.out.println("Sorted Circular Singly Linked List Test\n");          
        char ch;
        /*  Perform list operations  */
        do
        {
            System.out.println("\nSorted Circular Singly Linked List Operations\n");
            System.out.println("1. insert");
            System.out.println("2. delete at position");
            System.out.println("3. check empty");
            System.out.println("4. get size");
 
            int choice = scan.nextInt();            
            switch (choice)
            {
            case 1 : 
                System.out.println("Enter integer element to insert");
                list.insert( scan.nextInt() );                     
                break;                          
            case 2 : 
                System.out.println("Enter position");
                int p = scan.nextInt() ;
                if (p < 1 || p > list.getSize() )
                    System.out.println("Invalid position\n");
                else
                    list.deleteAtPos(p);
                break;
            case 3 : 
                System.out.println("Empty status = "+ list.isEmpty()+"\n");
                break;                   
            case 4 : 
                System.out.println("Size = "+ list.getSize() +" \n");
                break;                         
            default : 
                System.out.println("Wrong Entry \n ");
                break;   
            }
            /*  Display List  */ 
            list.display();
            System.out.println("\nDo you want to continue (Type y or n) \n");
            ch = scan.next().charAt(0);            
 
        } while (ch == 'Y'|| ch == 'y');               
    }
}
Sorted Circular Singly Linked List Test
 
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
1
Enter integer element to insert
3
Sorted Circular Singly Linked List = 3->3
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
1
Enter integer element to insert
6
Sorted Circular Singly Linked List = 3->6->3
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
1
Enter integer element to insert
24
Sorted Circular Singly Linked List = 3->6->24->3
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
1
Enter integer element to insert
1
Sorted Circular Singly Linked List = 1->3->6->24->1
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
1
Enter integer element to insert
0
Sorted Circular Singly Linked List = 0->1->3->6->24->0
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
1
Enter integer element to insert
19
Sorted Circular Singly Linked List = 0->1->3->6->19->24->0
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
4
Size = 6
 
Sorted Circular Singly Linked List = 0->1->3->6->19->24->0
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
2
Enter position
3
Sorted Circular Singly Linked List = 0->1->6->19->24->0
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
2
Enter position
1
Sorted Circular Singly Linked List = 1->6->19->24->1
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
2
Enter position
1
Sorted Circular Singly Linked List = 6->19->24->6
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
2
Enter position
3
Sorted Circular Singly Linked List = 6->19->6
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
2
Enter position
1
Sorted Circular Singly Linked List = 19->19
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
2
Enter position
1
Sorted Circular Singly Linked List = empty
 
Do you want to continue (Type y or n)
 
y
 
Sorted Circular Singly Linked List Operations
 
1. insert
2. delete at position
3. check empty
4. get size
3
Empty status = true
 
Sorted Circular Singly Linked List = empty
 
Do you want to continue (Type y or n)
 
n

Related posts:

Java Program to Implement Treap
A Guide To UDP In Java
Java Program to Apply DFS to Perform the Topological Sorting of a Directed Acyclic Graph
Java Program to Implement the Schonhage-Strassen Algorithm for Multiplication of Two Numbers
Java Program to Implement Merge Sort on n Numbers Without tail-recursion
Java Program to Check whether Graph is Biconnected
Spring Data Java 8 Support
Calling Stored Procedures from Spring Data JPA Repositories
Java Program to Perform Cryptography Using Transposition Technique
Luồng Daemon (Daemon Thread) trong Java
Java Program to Implement Skip List
Java Program to Find Maximum Element in an Array using Binary Search
Java Program to Implement Singly Linked List
Java Program to Implement the String Search Algorithm for Short Text Sizes
Spring AMQP in Reactive Applications
Java Program to Implement Traveling Salesman Problem using Nearest neighbour Algorithm
Java Program to Perform Uniform Binary Search
Giới thiệu Java 8
Reading an HTTP Response Body as a String in Java
Tạo chương trình Java đầu tiên sử dụng Eclipse
Java Optional as Return Type
Java Program to Find the Minimum Element of a Rotated Sorted Array using Binary Search approach
Guide to the Fork/Join Framework in Java
Java 9 Stream API Improvements
Java Program to Implement Double Ended Queue
Intro to the Jackson ObjectMapper
CyclicBarrier in Java
Spring WebClient Requests with Parameters
Java Program to Implement the Hungarian Algorithm for Bipartite Matching
Most commonly used String methods in Java
Java Program to Find Minimum Element in an Array using Linear Search
Copy a List to Another List in Java