From charlesreid1

No edit summary
No edit summary
Line 4: Line 4:


This is a concrete implementation (making a decision about the low-level details of how the object will be arranged in memory) of the Tree ADT (see [[Trees/ADT]]).
This is a concrete implementation (making a decision about the low-level details of how the object will be arranged in memory) of the Tree ADT (see [[Trees/ADT]]).
==Linked binary tree==
A concrete implementation of a binary tree using a link structure for memory is at [[Binary Trees/LinkedBinTree]] - link: https://charlesreid1.com:3000/cs/java/src/master/trees/LinkedBinTree.java


==Flags==
==Flags==

Revision as of 22:50, 12 June 2017

Linked tree class

A more generic version of the linked binary tree implementation LinkedBinTree (link: Binary Trees/LinkedBinTree)

This is a concrete implementation (making a decision about the low-level details of how the object will be arranged in memory) of the Tree ADT (see Trees/ADT).

Linked binary tree

A concrete implementation of a binary tree using a link structure for memory is at Binary Trees/LinkedBinTree - link: https://charlesreid1.com:3000/cs/java/src/master/trees/LinkedBinTree.java

Flags