-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mario A. Yusti
committed
Jun 8, 2021
0 parents
commit d2c9e60
Showing
536 changed files
with
116,466 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
<title> | ||
AVL Tree Visualzation | ||
</title> | ||
|
||
<!-- css sheet for how the page is laid out --> | ||
|
||
<link rel="stylesheet" href="visualizationPageStyle.css"> | ||
|
||
|
||
<!-- jqueury stuff. Only used for the animation speed slider. --> | ||
<link rel="stylesheet" href="ThirdParty/jquery-ui-1.8.11.custom.css"> | ||
|
||
<script src="ThirdParty/jquery-1.5.2.min.js"></script> | ||
<script src="ThirdParty/jquery-ui-1.8.11.custom.min.js"></script> | ||
|
||
<!-- Javascript for the actual visualization code --> | ||
<script type = "text/javascript" src = "AnimationLibrary/CustomEvents.js"> </script> | ||
<script type = "text/javascript" src = "AnimationLibrary/UndoFunctions.js"> </script> | ||
<script type = "text/javascript" src = "AnimationLibrary/AnimatedObject.js"> </script> | ||
<script type = "text/javascript" src = "AnimationLibrary/AnimatedLabel.js"> </script> | ||
<script type = "text/javascript" src = "AnimationLibrary/AnimatedCircle.js"> </script> | ||
<script type = "text/javascript" src = "AnimationLibrary/AnimatedRectangle.js"> </script> | ||
<script type = "text/javascript" src = "AnimationLibrary/AnimatedLinkedList.js"> </script> | ||
<script type = "text/javascript" src = "AnimationLibrary/HighlightCircle.js"> </script> | ||
<script type = "text/javascript" src = "AnimationLibrary/Line.js"> </script> | ||
<script type = "text/javascript" src = "AnimationLibrary/ObjectManager.js"> </script> | ||
<script type = "text/javascript" src = "AnimationLibrary/AnimationMain.js"> </script> | ||
<script type = "text/javascript" src = "AlgorithmLibrary/Algorithm.js"> </script> | ||
<script type = "text/javascript" src = "AlgorithmLibrary/AVL.js"> </script> | ||
|
||
|
||
</head> | ||
|
||
<body onload="init();" class="VisualizationMainPage"> | ||
|
||
<div id = "container"> | ||
|
||
<div id="header"> | ||
<h1>AVL Tree</h1> | ||
</div> | ||
|
||
<div = id = "mainContent"> | ||
|
||
<div id = "algoControlSection"> | ||
<!-- Table for buttons to control specific animation (insert/find/etc) --> | ||
<!-- (filled in by javascript code specific to the animtion) --> | ||
<table id="AlgorithmSpecificControls"> </table> | ||
</div> | ||
|
||
<!-- Drawing canvas where all animation is done. Note: can be resized in code --> | ||
|
||
<canvas id="canvas" width="1000" height="500"></canvas> | ||
|
||
<div id = "generalAnimationControlSection"> | ||
<!-- Table for buttons to control general animation (play/pause/undo/etc) -> | ||
<!-- (filled in by javascript code, specifically AnimationMain.js) --> | ||
|
||
<table id="GeneralAnimationControls"> </table> | ||
</div> | ||
|
||
</div> <!-- mainContent --> | ||
|
||
<div id="footer"> | ||
<p><a href="Algorithms.html">Algorithm Visualizations</a></p> | ||
</div> | ||
|
||
</div><!-- container --> | ||
</body> | ||
</html> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.