Neocortex 🧠

Search

Search IconIcon to open search

Sentinel Nodes

Last updated Nov 16, 2021 Edit Source

Sometimes, when implementing Linked List, especially Doubly Linked List, it makes our job much easier to implement sentinel nodes. Sentinel nodes are basicaly dummy nodes that are defined with the list, called header and tailer. By using these dummy nodes, our job is greatly simplified due to several reasons:


Interactive Graph