Programma Java per rilevare il loop in una LinkedList

In questo esempio, impareremo a rilevare se è presente un loop in LinkedList in Java.

Per comprendere questo esempio, è necessario conoscere i seguenti argomenti di programmazione Java:

  • Java LinkedList
  • Metodi Java

Esempio: rileva loop in una LinkedList

 class LinkedList ( // create an object of Node class // represent the head of the linked list Node head; // static inner class static class Node ( int value; // connect each node to next node Node next; Node(int d) ( value = d; next = null; ) ) // check if loop is present public boolean checkLoop() ( // create two references at start of LinkedList Node first = head; Node second = head; while(first != null && first.next !=null) ( // move first reference by 2 nodes first = first.next.next; // move second reference by 1 node second = second.next; // if two references meet // then there is a loop if(first == second) ( return true; ) ) return false; ) public static void main(String() args) ( // create an object of LinkedList LinkedList linkedList = new LinkedList(); // assign values to each linked list node linkedList.head = new Node(1); Node second = new Node(2); Node third = new Node(3); Node fourth = new Node(4); // connect each node of linked list to next node linkedList.head.next = second; second.next = third; third.next = fourth; // make loop in LinkedList fourth.next = second; // printing node-value System.out.print("LinkedList: "); int i = 1; while (i <= 4) ( System.out.print(linkedList.head.value + " "); linkedList.head = linkedList.head.next; i++; ) // call method to check loop boolean loop = linkedList.checkLoop(); if(loop) ( System.out.println("There is a loop in LinkedList."); ) else ( System.out.println("There is no loop in LinkedList."); ) ) )

Produzione

 LinkedList: 1 2 3 4 C'è un loop in LinkedList.

Nell'esempio sopra, abbiamo implementato una LinkedList in Java. Abbiamo utilizzato l'algoritmo di ricerca del ciclo di Floyd per verificare se è presente un loop in LinkedList.

Notare il codice all'interno del checkLoop()metodo. Qui abbiamo due variabili denominate prima e seconda che attraversano i nodi in LinkedList.

  • primo - traversa con 2 nodi a singola iterazione
  • secondo - traversa con 1 nodo a singola iterazione

Due nodi stanno attraversando a velocità diverse. Quindi, si incontreranno se c'è un loop in LinkedList.

Articoli interessanti...