vote up 4 vote down star
1

I'm scouring the internet for a definition of the term "Internal Node." I cannot find a succinct definition. Every source I'm looking at uses the term without defining it, and the usage doesn't yield a proper definition of what an internal node actually is.

Here are the two places I've been mainly looking: http://planetmath.org/encyclopedia/ExternalNode.html assumes that internal nodes are nodes that have two subtrees that aren't null, but doesn't say what nodes in the original tree are internal vs. external.

http://www.math.bas.bg/~nkirov/2008/NETB201/slides/ch06/ch06-2.html seems to insinuate that internal nodes only exist in proper binary trees and doesn't yield much useful information about them.

What actually is an internal node!?

flag

60% accept rate

5 Answers

vote up 12 vote down check

          ROOT
           o
         /   \
        o     o INTERNAL NODES
        |    / \
        o   o   o EXTERNAL NODES (or leaves)

As the wonderful picture shows, internal nodes are nodes located between the root of the tree and the leaves.

What is said in one of the sites about an internal node having to have two children is for the tree to be a complete binary tree, not for the node to be internal.

link|flag
In the diagram, can you make one of your internal nodes only have one child? This will help to clarify the definition. – Bobby Jack Nov 5 '08 at 16:56
Lovely - this is FAR superior to the current highest-rated answer. – Bobby Jack Nov 5 '08 at 17:09
This was my initial intuition, but I have a professor and a book that disagree. – evizaer Nov 5 '08 at 17:38
What's the disagreement about? – Vinko Vrsalovic Nov 5 '08 at 17:44
The 2nd resource you link to in your question states "A binary tree is proper if each internal node has two children." The term "proper" here doesn't mean 'real' or 'valid'; it's just terminology for that type of tree. A generic definition of "internal node" therefore has nothing to do with ... – Bobby Jack Nov 6 '08 at 16:23
show 1 more comment
vote up 0 vote down

A node which has at least one child.

link|flag
vote up 0 vote down

Generally, an internal node is any node that is not a leaf (a node with no children).

In extended binary trees (also comparison trees), internal nodes all have two children because each internal node corresponds to a comparison that must be made [The Art of Computer Programming (TAoCP) vol.3 Sorting and Searching, discussion and figure in section 5.3.1, p.181 (ed.2). By the way, the use of these trees to represent pairings (and byes) for elimination tournaments is addressed in section 5.4.1 of this material.]

Vinko's diagram reflects this distinction, although the root node is also always either an internal node or a leaf node, in addition to being the only node with no parent.

There is a broader discussion in Knuth's treatment of information structures and properties of trees [TAoCP vol.1 Fundamental Algorithms, discussion of path lengths in trees in section 2.3.4.5, p.p. 399-406 (ed.3) including exercises (many worked-out in the back of the book)].

It is useful to notice that binary search trees (where internal nodes also hold single values as well as having up to two children) are somewhat different [TAoCP vol.3, section 6.2.2]. The nomenclature still works, though.

link|flag
vote up 4 vote down

An internal node or inner node is any node of a tree that has child nodes and is thus not a leaf node. An intermediate node between the root and the leaf nodes is called an internal node.

Source: http://en.wikipedia.org/wiki/Tree_data_structure

link|flag
vote up 8 vote down

As far as i understand it, it is a node which is not a leaf.

link|flag
That is my understanding of an internal node also. Perhaps it might also not include the root. – Chris Ballance Nov 5 '08 at 16:49
Internal nodes do exclude the root. – Bill the Lizard Nov 5 '08 at 16:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.