Node (computer science)
   HOME

TheInfoList



OR:

A node is a basic unit of a
data structure In computer science, a data structure is a data organization, management, and storage format that is usually chosen for efficient access to data. More precisely, a data structure is a collection of data values, the relationships among them, ...
, such as a
linked list In computer science, a linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Instead, each element points to the next. It is a data structure consisting of a collection of nodes which ...
or
tree In botany, a tree is a perennial plant with an elongated stem, or trunk, usually supporting branches and leaves. In some usages, the definition of a tree may be narrower, including only woody plants with secondary growth, plants that are ...
data structure. Nodes contain
data In the pursuit of knowledge, data (; ) is a collection of discrete values that convey information, describing quantity, quality, fact, statistics, other basic units of meaning, or simply sequences of symbols that may be further interpret ...
and also may link to other nodes. Links between nodes are often implemented by pointers.


Nodes and Trees

Nodes are often arranged into tree structures. A node represents the information contained in a single data structure. These nodes may contain a value or condition, or possibly serve as another independent data structure. Nodes are represented by a single parent node. The highest point on a tree structure is called a root node, which does not have a parent node, but serves as the parent or 'grandparent' of all of the nodes below it in the tree. The height of a node is determined by the total number of edges on the path from that node to the furthest leaf node, and the height of the tree is equal to the height of the root node. Node depth is determined by the distance between that particular node and the root node. The root node is said to have a depth of zero. Data can be discovered along these network paths. An IP address uses this kind of system of nodes to define its location in a network.


Definitions

*Child: A child node is a node extending from another node. For example, a computer with internet access could be considered a child node of a node representing the internet. The inverse relationship is that of a parent node. If node ''C'' is a child of node ''A'', then ''A'' is the parent node of ''C''. *Degree: the degree of a node is the number of children of the node. *Depth: the depth of node ''A'' is the length of the path from ''A'' to the root node. The root node is said to have depth 0. *Edge: the connection between nodes. *Forest: a set of trees. *Height: the height of node ''A'' is the length of the longest path through children to a leaf node. *Internal node: a node with at least one child. *Leaf node: a node with no children. *Root node: a node distinguished from the rest of the tree nodes. Usually, it is depicted as the highest node of the tree. *Sibling nodes: these are nodes connected to the same parent node.


Markup languages

Another common use of node trees is in
web development Web development is the work involved in developing a website for the Internet (World Wide Web) or an intranet (a private network). Web development can range from developing a simple single static page of plain text to complex web applications ...
. In programming,
XML Extensible Markup Language (XML) is a markup language and file format for storing, transmitting, and reconstructing arbitrary data. It defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. T ...
is used to communicate information between computer programmers and computers alike. For this reason XML is used to create common
communication protocol A communication protocol is a system of rules that allows two or more entities of a communications system to transmit information via any kind of variation of a physical quantity. The protocol defines the rules, syntax, semantics and synchroniza ...
s used in office productivity software, and serves as the base for the development of modern web
markup language Markup language refers to a text-encoding system consisting of a set of symbols inserted in a text document to control its structure, formatting, or the relationship between its parts. Markup is often used to control the display of the document ...
s like
XHTML Extensible HyperText Markup Language (XHTML) is part of the family of XML markup languages. It mirrors or extends versions of the widely used HyperText Markup Language (HTML), the language in which Web pages are formulated. While HTML, prior ...
. Though similar in how it is approached by a programmer,
HTML The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaS ...
and
CSS Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a document written in a markup language such as HTML or XML (including XML dialects such as SVG, MathML or XHTML). CSS is a cornerstone technolo ...
is typically the language used to develop website text and design. While XML, HTML and XHTML provide the language and expression, the DOM serves as a translator.


Node type

Different types of nodes in a tree are represented by specific interfaces. In other words, the node type is defined by how it communicates with other nodes. Each node has a node type property, which specifies the type of node, such as sibling or leaf. For example, if the node type property is the constant properties for a node, this property specifies the type of the node. So if a node type property is the constant node ELEMENT_NODE, one can know that this node object is an object Element. This object uses the Element interface to define all the methods and properties of that particular node. Different W3C
World Wide Web Consortium The World Wide Web Consortium (W3C) is the main international standards organization for the World Wide Web. Founded in 1994 and led by Tim Berners-Lee, the consortium is made up of member organizations that maintain full-time staff working ...
node types and descriptions: *Document represents the entire document (the root-node of the DOM tree) *DocumentFragment represents a "lightweight" Document object, which can hold a portion of a document *DocumentType provides an interface to the entities defined for the document *ProcessingInstruction represents a processing instruction *EntityReference represents an entity reference *Element represents an element *Attr represents an attribute *Text represents textual content in an element or attribute *CDATASection represents a CDATA section in a document (text that will NOT be parsed by a parser) *Comment represents a comment *Entity represents an entity *Notation represents a notation declared in the DTD


Node object

A node object is represented by a single node in a tree. It can be an element node, attribute node, text node, or any type that is described in section "node type". All objects can inherit properties and methods for dealing with parent and child nodes, but not all of the objects have parent or child nodes. For example, with text nodes that cannot have child nodes, trying to add child nodes results in a DOM error. Objects in the DOM tree may be addressed and manipulated by using methods on the objects. The public interface of a DOM is specified in its
application programming interface An application programming interface (API) is a way for two or more computer programs to communicate with each other. It is a type of software interface, offering a service to other pieces of software. A document or standard that describes how ...
(API). The history of the Document Object Model is intertwined with the history of the " browser wars" of the late 1990s between Netscape Navigator and Microsoft Internet Explorer, as well as with that of
JavaScript JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, of ...
and
JScript JScript is Microsoft's legacy dialect of the ECMAScript standard that is used in Microsoft's Internet Explorer 11 and older. JScript is implemented as an Active Scripting engine. This means that it can be "plugged in" to OLE Automation applica ...
, the first
scripting language A scripting language or script language is a programming language that is used to manipulate, customize, and automate the facilities of an existing system. Scripting languages are usually interpreted at runtime rather than compiled. A scripting ...
s to be widely implemented in the layout engines of
web browser A web browser is application software for accessing websites. When a user requests a web page from a particular website, the browser retrieves its files from a web server and then displays the page on the user's screen. Browsers are used o ...
s.


See also

*
Vertex (graph theory) In discrete mathematics, and more specifically in graph theory, a vertex (plural vertices) or node is the fundamental unit of which graphs are formed: an undirected graph consists of a set of vertices and a set of edges (unordered pairs of ve ...


References

{{Reflist


External links


Data Trees as a Means of Presenting Complex Data Analysis
by Sally Knipe
STL-like C++ tree class

Description of tree data structures from ideainfo.8m.com

WormWeb.org: Interactive Visualization of the ''C. elegans'' Cell Tree
- Visualize the entire cell lineage tree of the nematode ''C. elegans'' (javascript) Linked lists Graph data structures