My Project
Public Member Functions | Public Attributes | List of all members
DoublyLinkedListNode Class Reference

Doubly Linked List Node class. Available member functions include default constructor and initialising constructor. More...

Collaboration diagram for DoublyLinkedListNode:
Collaboration graph
[legend]

Public Member Functions

 DoublyLinkedListNode ()
 Construct a new Doubly Linked List Node object.
 
 DoublyLinkedListNode (ll val)
 Construct a new Doubly Linked List Node object. More...
 

Public Attributes

ll data
 data stored in the node
 
DoublyLinkedListNodenext
 pointer to the next node
 
DoublyLinkedListNodeprev
 pointer to the previous node
 

Detailed Description

Doubly Linked List Node class. Available member functions include default constructor and initialising constructor.

Constructor & Destructor Documentation

◆ DoublyLinkedListNode()

DoublyLinkedListNode::DoublyLinkedListNode ( ll  val)
inline

Construct a new Doubly Linked List Node object.

Parameters
[in]valinput value for the node

The documentation for this class was generated from the following file: