June 2017
Beginner
1296 pages
69h 23m
English
referential.
stack.
predicate.
first-in, first-out (FIFO).
link.
garbage collection.
queue.
tree.
last-in, first-out (LIFO).
binary.
root.
child or subtree.
leaf.
inorder, preorder, postorder.
-d.
class loader.
-classpath or -cp, CLASSPATH.
package declaration.
21.2 It’s possible to insert a node anywhere and remove a node from anywhere in a linked list. Nodes in a stack may be inserted only at the top of the stack and removed only from the top.
21.3 A queue is a FIFO data structure—nodes may be inserted at the tail and deleted from the head. A stack is a LIFO data structure that has a single reference to the stack’s top, where both insertion and deletion of nodes are performed.
Read now
Unlock full access