PHP Data Structures - Circular Singly Linked List Other Related Topics

PHP - Delete even nodes of the Circular Singly Linked List



Deleting even nodes of a circular singly linked list requires traverse through the list and deleting even nodes one by one. It requires creating two nodes - oddNode and evenNode. If the list contains more than one node, make oddNode to first odd node of list and evenNode to first even node of the list. Store the current odd node into temp node and delete the even node. Move both nodes to next set of odd-even nodes. Repeat the process till any of nodes reaches head. Finally, link the last node with the head.

The function deleteEvenNodes is created for this purpose. It is a 3-step process.

public function deleteEvenNodes() {
  if($this->head != null && $this->head->next != $this->head) {
  
    //1. if the list has more than one element
    //   create evenNode node - pointing to head
    //   oddNode node - pointing to next of head
    //   temp node - to store last odd node
    $oddNode = $this->head;
    $evenNode = $this->head->next; 
    $temp = new Node();

    while(true) {
      
      //2. delete even node and update evenNode and 
      //   oddNode to next set of odd-even nodes
      //   update temp node to latest oddNode node
      //   continue the process till any of the node 
      //   reaches head
      $temp = $oddNode;
      $oddNode->next = $evenNode->next;
      $evenNode = null;
      $oddNode = $oddNode->next;
      $evenNode = $oddNode->next;
      if($oddNode == $this->head || $evenNode == $this->head)
        break;
    }
    
    //3. if oddNode reaches head, make next of 
    //   temp as head else make next of oddNode
    //   as head
    if($oddNode == $this->head)
      $temp->next = $this->head;
    else
      $oddNode->next = $this->head;
  }
} 

The below is a complete program that uses above discussed concept of deleting even nodes of a circular singly linked list.

<?php
//node structure
class Node {
  public $data;
  public $next;
}

class LinkedList {
  public $head;

  public function __construct(){
    $this->head = null;
  }
  
  //Add new element at the end of the list
  public function push_back($newElement) {
    $newNode = new Node();
    $newNode->data = $newElement;
    $newNode->next = null; 
    if($this->head == null) {
      $this->head = $newNode;
      $newNode->next = $this->head;
    } else {
      $temp = new Node();
      $temp = $this->head;
      while($temp->next !== $this->head) {
        $temp = $temp->next;
      }
      $temp->next = $newNode;
      $newNode->next = $this->head;
    }    
  }

  //delete even nodes of the list
  public function deleteEvenNodes() {
    if($this->head != null && $this->head->next != $this->head) {
      $oddNode = $this->head;
      $evenNode = $this->head->next; 
      $temp = new Node();

      while(true) {
        $temp = $oddNode;
        $oddNode->next = $evenNode->next;
        $evenNode = null;
        $oddNode = $oddNode->next;
        $evenNode = $oddNode->next;
        if($oddNode == $this->head || $evenNode == $this->head)
          break;
      }
      if($oddNode == $this->head)
        $temp->next = $this->head;
      else
        $oddNode->next = $this->head;
    }
  } 

  //display the content of the list
  public function PrintList() {
    $temp = new Node();
    $temp = $this->head;
    if($temp != null) {
      echo "The list contains: ";
      while(true) {
        echo $temp->data." ";
        $temp = $temp->next;
        if($temp == $this->head)
          break;        
      }
      echo "\n";
    } else {
      echo "The list is empty.\n";
    }
  }    
};

// test the code  
$MyList = new LinkedList();

//Add five elements in the list.
$MyList->push_back(10);
$MyList->push_back(20);
$MyList->push_back(30);
$MyList->push_back(40);
$MyList->push_back(50);

//Display the content of the list.
$MyList->PrintList();

//delete even nodes of the list
$MyList->deleteEvenNodes();

echo "After deleting even nodes.\n";
//Display the content of the list.
$MyList->PrintList();
?>

The above code will give the following output:

The list contains: 10 20 30 40 50 
After deleting even nodes.
The list contains: 10 30 50