Instance code _php example of single linked list in PHP implementation

Source: Internet
Author: User

Copy Code code as follows:

<?php

Linked list node
Class Node {
public $id; Node ID
Public $name; Node name
Public $next; Next node

Public function __construct ($id, $name) {
$this->id = $id;
$this->name = $name;
$this->next = null;
}
}

Single linked list
Class Singellinklist {
Private $header; Linked Table Header node

Construction method
Public function __construct ($id = null, $name = null) {
$this->header = new node ($id, $name, NULL);
}

Get the length of a linked list
Public Function Getlinklength () {
$i = 0;
$current = $this->header;
while ($current->next!= null) {
$i + +;
$current = $current->next;
}
return $i;
}

Add node data
Public Function Addlink ($node) {
$current = $this->header;
while ($current->next!= null) {
if ($current->next->id > $node->id) {
Break
}
$current = $current->next;
}
$node->next = $current->next;
$current->next = $node;
}

Delete a linked list node
Public Function Dellink ($id) {
$current = $this->header;
$flag = false;
while ($current->next!= null) {
if ($current->next->id = = $id) {
$flag = true;
Break
}
$current = $current->next;
}
if ($flag) {
$current->next = $current->next->next;
} else {
echo "did not find id=." $id. "The node!" <br> ";
}
}

Get linked List
Public Function getlinklist () {
$current = $this->header;
if ($current->next = = null) {
Echo ("List is empty!");
Return
}
while ($current->next!= null) {
echo ' ID: '. $current->next->id. ' Name: '. $current->next->name. "<br>";
if ($current->next->next = = null) {
Break
}
$current = $current->next;
}
}

Get node Name
Public Function Getlinknamebyid ($id) {
$current = $this->header;
if ($current->next = = null) {
echo "List is empty!";
Return
}
while ($current->next!= null) {
if ($current->id = = $id) {
Break
}
$current = $current->next;
}
return $current->name;
}

Update node Name
Public Function UpdateLink ($id, $name) {
$current = $this->header;
if ($current->next = = null) {
echo "List is empty!";
Return
}
while ($current->next!= null) {
if ($current->id = = $id) {
Break
}
$current = $current->next;
}
return $current->name = $name;
}
}

$lists = new Singellinklist ();
$lists->addlink (New node (5, ' eeeeee '));
$lists->addlink (new node (1, ' aaaaaa '));
$lists->addlink (new node (6, ' ffffff '));
$lists->addlink (New node (4, ' dddddd '));
$lists->addlink (New node (3, ' CCCCCC '));
$lists->addlink (New node (2, ' bbbbbb '));
$lists->getlinklist ();
echo "<br>-----------Delete node--------------<br>";
$lists->dellink (5);
$lists->getlinklist ();

echo "<br>-----------Update node name--------------<br>";
$lists->updatelink (3, "222222");
$lists->getlinklist ();

echo "<br>-----------Get node name--------------<br>";
Echo $lists->getlinknamebyid (5);

echo "<br>-----------get the link length--------------<br>";
echo $lists->getlinklength ();
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.