|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.princeton.cs.algs4.growingtree.framework.AbstractAnimation
edu.princeton.cs.algs4.growingtree.framework.SearchBSTAnimation<P>
public class SearchBSTAnimation<P extends NodeProperties>
The Animation object that defines the Searching in a BSTTree.
The object restores all values changed in the given nodes, however, if the object is never allowed to finish, the restoring of values becomes impossible. On any exception occuring elsewhere, the object may not restore the conditions correctly.
Field Summary | |
---|---|
static int |
DEFAULT_CONVERSION
The Default step conversion used in animation (300). |
Fields inherited from class edu.princeton.cs.algs4.growingtree.framework.AbstractAnimation |
---|
DEFAULT_STEP |
Fields inherited from interface edu.princeton.cs.algs4.growingtree.framework.Animation |
---|
ANIMATION_MESSAGE, BEGIN, FINISH, PAUSE, PLAY, REDRAW, REWIND, STEP, STOP |
Constructor Summary | |
---|---|
SearchBSTAnimation(KeyType keySearch,
GrowingTreeHead<P> headNode)
The constructor which initiates the status and sets the color schemes to null. |
|
SearchBSTAnimation(KeyType keySearch,
GrowingTreeHead<P> headNode,
NodeSettings AnimationSchemeLeft,
NodeSettings AnimationSchemeRight,
NodeSettings AnimatorScheme,
KeySettings KeyAnimatorScheme,
java.lang.String startingCmd,
int stepTime)
The constructor which initiates the status and prepares the colorSchemes. |
Method Summary | |
---|---|
void |
add(GrowingTreeNode<P> node)
Add a step to the Search Animation. |
void |
drawAnimation(java.awt.Graphics2D g2,
java.lang.String startingStatus)
Draws the animation of the next step, using the status of the animation (Animation.PLAY, Animation.PAUSE and so forth). |
NodeSettings |
getAnimationSchemeLeft()
Gets the NodeSettings for the left animation scheme for the search. |
NodeSettings |
getAnimationSchemeRight()
Gets the NodeSettings for the right animation scheme for the search. |
NodeSettings |
getAnimatorScheme()
Gets the NodeSettings for the animator scheme for the search. |
KeySettings |
getKeyAnimatorScheme()
Sets the KeySettings for the animator scheme key for the search. |
KeyType |
getKeySearch()
Gets the comparable object being searched for. |
boolean |
isSearchHit()
Gets whether a search hit has been found. |
void |
setAnimationSchemeLeft(NodeSettings scheme)
Sets the NodeSettings for the left animation scheme for the insertion. |
void |
setAnimationSchemeRight(NodeSettings scheme)
Sets the NodeSettings for the right animation scheme for the insertion. |
void |
setAnimatorScheme(NodeSettings scheme)
Sets the NodeSettings for the animator scheme for the insertion. |
void |
setKeyAnimatorScheme(KeySettings scheme)
Sets the KeySettings for the animator scheme key for the insertion. |
Methods inherited from class edu.princeton.cs.algs4.growingtree.framework.AbstractAnimation |
---|
addAnimationListener, addDescription, drawAnimation, getDescription, getListeners, getStatus, getStep, getStepTime, removeAnimationListener, setStatus, setStep, setStepTime |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int DEFAULT_CONVERSION
Constructor Detail |
---|
public SearchBSTAnimation(KeyType keySearch, GrowingTreeHead<P> headNode, NodeSettings AnimationSchemeLeft, NodeSettings AnimationSchemeRight, NodeSettings AnimatorScheme, KeySettings KeyAnimatorScheme, java.lang.String startingCmd, int stepTime)
keySearch
- the object key being searched for with the tree.headNode
- the head of the tree being searched.AnimationSchemeLeft
- the NodeSettings
associated with a color scheme according to NodeSettings for the left Animation.AnimationSchemeRight
- the NodeSettings
associated with a color scheme according to NodeSettings for the right Animation.KeyAnimatorScheme
- the KeySettings
associated with a color scheme according to KeySettings.startingCmd
- the Animation command that this should start.stepTime
- the time for each step of the Animation. Sets the initial value.public SearchBSTAnimation(KeyType keySearch, GrowingTreeHead<P> headNode)
keySearch
- the object key being searched for with the tree.headNode
- the head of the tree being searched.Method Detail |
---|
public boolean isSearchHit()
public KeyType getKeySearch()
public NodeSettings getAnimationSchemeLeft()
public NodeSettings getAnimationSchemeRight()
public NodeSettings getAnimatorScheme()
public KeySettings getKeyAnimatorScheme()
public void setAnimationSchemeLeft(NodeSettings scheme)
scheme
- NodeSettings for the node after the animated node passes it to the left.public void setAnimationSchemeRight(NodeSettings scheme)
scheme
- NodeSettings for the node after the animated node passes it to the right.public void setAnimatorScheme(NodeSettings scheme)
scheme
- NodeSettings for the node animating.public void setKeyAnimatorScheme(KeySettings scheme)
scheme
- KeySettings for the key of the node animating.public void add(GrowingTreeNode<P> node)
node
- the color scheme is changed when the step is completed.public void drawAnimation(java.awt.Graphics2D g2, java.lang.String startingStatus)
drawAnimation
in interface Animation
drawAnimation
in class AbstractAnimation
g2
- the graphics to which the animation step should be drawn.startingStatus
- the status used as the starting command of animation, if needed.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |