Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
#include <queue.h>
Public Member Functions | |
node (int d) | |
Public Attributes | |
int | data |
int | height |
struct node * | left |
struct node * | right |
int | val |
node * | left |
node * | right |
struct node * | next |
node * | next |
node * | prev |
Kind | data |
node< Kind > * | next |
int | key |
node * | parent |
char | color |
Type | data |
data at current node | |
node< Type > * | next |
pointer to the next node instance | |
node * | link |
Definition of the node
Definition of the node as a linked-list
Type | type of data nodes of the linked list should contain |