Concept of an Element (Node)
From
Revision as of 16:42, 25 March 2009 by 209.237.84.181 (Talk)
A node is the unit of reference in a data structure. It is an abstract encapsulation structure that contains the data element that is held in the container (data structure). Also known as a vertex in graphs and trees.
A node may encapsulate a collection of information or a singular value which represents a single concept or object. A node is a referenced element commonly implemented using pointers, arrays, records, structs, file records (external storage), or even as a concept in a DBMS system.
(...need diagram here...)
(...Java Example Link...)
(...C++ Example Link...)