◆ double_linked_list()
| double_linked_list::double_linked_list |
( |
| ) |
|
|
inline |
◆ insert()
| void double_linked_list::insert |
( |
int |
x | ) |
|
24 while (t->next != NULL) {
Definition: avltree.cpp:13
◆ remove()
| void double_linked_list::remove |
( |
int |
x | ) |
|
43 while (t != NULL && t->val != x) {
49 if (t->prev == NULL) {
50 if (t->next == NULL) {
56 }
else if (t->next == NULL) {
59 t->prev->next = t->next;
60 t->next->prev = t->prev;
◆ reverseShow()
| void double_linked_list::reverseShow |
( |
| ) |
|
91 while (t != NULL && t->next != NULL) {
◆ search()
| void double_linked_list::search |
( |
int |
x | ) |
|
◆ show()
| void double_linked_list::show |
( |
| ) |
|
The documentation for this class was generated from the following file:
- data_structures/doubly_linked_list.cpp