Sentinel node
In computer programming, a sentinel node is a specifically designated node used with linked lists and trees as a traversal path terminator. This type of node does not hold or reference any data managed by the data structure.
Benefits
Sentinels are used as an alternative over using null as the path terminator in order to get one or more of the following benefits:
- Increased speed of operations
- Reduced algorithmic complexity and code size
- Increased data structure robustness (arguably)
However, sentinel nodes rely on shared memory, which requires extra code to avoid data races. This causes sentinel nodes to have poor performance on concurrent systems.
Example
Below are two versions of a subroutine (implemented in the C programming language) for looking up a given search key in a singly linked list. The first one uses the sentinel value NULL
, and the second one a (pointer to the) sentinel node Sentinel
, as the end-of-list indicator. The declarations of the singly linked list data structure and the outcomes of both subroutines are the same.
struct sll_node { // one node of the singly linked list
int key;
struct sll_node *next; // end-of-list indicator or -> next node
} sll, *first;
First version using NULL as an end-of-list indicator
// global initialization
first = NULL; // before the first insertion (not shown)
struct sll_node *Search(struct Node *first, int search_key) {
struct sll_node *node;
for (node = first; node != NULL; node = node->next) {
if (node->key == search_key)
return node; // found
}
// not found
return NULL;
}
The for
-loop contains two tests per iteration:
-
if (node != NULL)
-
if (node->key == search_key)
.
Second version using a sentinel node
The globally available pointer sentinel
to the deliberately prepared data structure Sentinel
is used as end-of-list indicator.
// global variable
sll_node Sentinel, *sentinel = &Sentinel;
// global initialization
sentinel->next = sentinel;
first = sentinel; // before the first insertion (not shown)
struct sll_node *SearchWithSentinelnode(struct Node *first, int search_key) {
struct sll_node *node;
sentinel->key = search_key;
for (node = first; node->key != search_key; node = node->next) {
}
if (node != sentinel)
return node; // found
// not found
return NULL;
}
The for
-loop contains only one test per iteration:
-
if (node->key != search_key)
.
- Remark
If the data structure is accessed concurrently then the operation SearchWithSentinelnode
belongs into a critical section which has to be protected by a mutex – as modifying operations always do.