-
Notifications
You must be signed in to change notification settings - Fork 0
/
List.php
67 lines (59 loc) · 1.63 KB
/
List.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
class Node
{
public $next = null;
public $data;
public function __construct($next, $data)
{
$this->next = $next;
$this->data = $data;
}
}
class Our_List
{
public $start = null;
public $count = 0;
/*Добавление элемента в список*/
public function push_front($data)
{
$this->start = new Node($this->start, $data);
$this->count++;
}
public function list_print()
{
if ($this->count > 0) {
$temp = $this->start;
do {
echo $temp->data . '<br>';
$temp = $temp->next;
} while ($temp != null);
}
}
/* метод для удаления первого элемента списка */
public function pop_front()
{
if (!$this->count) return;
$temp = $this->start->data;
$this->start = $this->start->next;
$this->count--;
return $temp;
}
/* Метод получения элемента по индексу: $a->get(index) */
public function get_element($index)
{
if ($this->start) {
echo 'Получаем элемент по индексу <br>';
$temp = $this->start->data;
// echo $temp->data;
// $this->start = $index;
} else {
echo 'Нема элементов в списке';
}
}
/* метод для добавления элемента в конец списка */
public function push_end($data)
{
$this->start = new Node($this->start, $data);
$this->count++;
}
}