C_Algorithms 2.0.0
Documentation
|
#include <doublyLinkedList.h>
Data Fields | |
Node * | previous_ |
Node * | next_ |
int | data_ |
Definition at line 15 of file doublyLinkedList.h.
int data_ |
Definition at line 19 of file doublyLinkedList.h.
Referenced by createNode(), FunctionCall(), printList(), and removeNodeWithValue().
Node* next_ |
Definition at line 18 of file doublyLinkedList.h.
Referenced by appendListToEndOfList(), appendNodeToEndOfList(), checkElementInList(), createNode(), printList(), remove_first(), removeNodeFromList(), and removeNodeWithValue().
Node* previous_ |
Definition at line 17 of file doublyLinkedList.h.
Referenced by appendListToEndOfList(), appendNodeToEndOfList(), createNode(), removeNodeFromList(), and removeNodeWithValue().