Week 7 Workshop 5 Hierarchical Data Structures Part 1

 0    11 informačný list    up804653
stiahnuť mp3 vytlačiť hrať Skontrolujte sa
 
otázka English Odpoveď English
What is a general tree/ multi branch tree?
začať sa učiť
The hierarchical (or tree) data structure consists of a collection of nodes (elements) where each node has a unique predecessor and many successors.
What is a binary tree?
začať sa učiť
a data structure in which a record is linked to two successor records, usually referred to as the left branch when greater and the right when less than the previous record.
What is a binary search tree
začať sa učiť
a binary tree where each node has a Comparable key (and an associated value) and the key in any node is larger than the keys in all nodes in that node's left subtree and smaller than the keys in all nodes in that node's right subtree.
What is a sub tree?
začať sa učiť
The subtree corresponding to the root node is the entire tree; the subtree corresponding to any other node is called a proper subtree. and consists of all the nodes below on the branch
what is a leaf?
začať sa učiť
another word for terminal node
what is a root node?
začať sa učiť
The topmost node in the tree is called the root.
what is a branch?
začať sa učiť
a line of linked nodes
what is meant by degree of a node
začať sa učiť
The degree of a node in a network (sometimes referred to incorrectly as the connectivity) is the number of connections or edges the node has to other nodes.
what is level of a node
začať sa učiť
the number of parent nodes a tree node has
what is height/depth of a tree
začať sa učiť
The depth of a node is the number of edges from the node to the tree's root node.
what is a balanced ST
začať sa učiť
A balanced tree is one in which all paths from the root node to the leaf nodes are of the same length.

Ak chcete pridať komentár, musíte byť prihlásený.