Concept of an Element (Node)

From

(Difference between revisions)
Jump to: navigation, search
m (Protected "Concept of an Element (Node)" ([edit=autoconfirmed] (indefinite) [move=autoconfirmed] (indefinite)))
(Examples of Abstract Node Implementation)
Line 16: Line 16:
Here three such nodes form a singly-linked list of length 3.
Here three such nodes form a singly-linked list of length 3.
-
<br>[[Image:Singly_linked_list_delete_after.png]]
+
<br>[[Image:Singly-linked-list.svg]]
<br>
<br>
Line 30: Line 30:
Here two such nodes form a doubly-linked list of length 2.
Here two such nodes form a doubly-linked list of length 2.
-
[[Image:]]
 
-
<br>
+
 
 +
&nbsp;&nbsp;&nbsp; [[Image:Doubly-linked-list.svg]]
<br>(...Java Example Link...)
<br>(...Java Example Link...)
(...C++ Example Link...)&nbsp;
(...C++ Example Link...)&nbsp;
-
 
-
<br>
 
-
 
-
<br>[[CS2|Back to Data Structures (CS2)]]
 
-
 
-
[[Category:Linked_lists]] [[Category:Trees_(structure)]] [[Category:Graph_data_structures]]
 

Revision as of 14:42, 29 March 2009

A node is an abstract basic unit used to build linked data structures such as trees, linked lists, and computer-based representations of graphs. Each node contains some data and possibly links to other nodes. Links between nodes are often implemented by pointers or references.

A node can be thought of as a logical placeholder for some data. It is a memory block which contains some data unit and perhaps references to other nodes, which in turn contain data and perhaps references to yet more nodes. By forming chains of interlinked nodes, very large and complex data structures can be formed.

Nodes are conceptually similar to vertices, which are elements of a graph.

Examples of Abstract Node Implementation

A node containing a single reference field.

 class Node {
    data // The data being stored in the node
    next // A reference to the next node, null if last node
 }

Here three such nodes form a singly-linked list of length 3.


Image:Singly-linked-list.svg


A node containing two reference fields.

 class Node {
    data // The data being stored in the node
    previous // A reference to the previous node, null if first node
    next // A reference to the next node, null if last node
 }

Here two such nodes form a doubly-linked list of length 2.


    Image:Doubly-linked-list.svg


(...Java Example Link...)

(...C++ Example Link...) 

Personal tools
MediaWiki Appliance - Powered by TurnKey Linux