Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario A. Yusti committed Jun 8, 2021
0 parents commit d2c9e60
Show file tree
Hide file tree
Showing 536 changed files with 116,466 additions and 0 deletions.
Binary file added JavascriptVisualRelease/.DS_Store
Binary file not shown.
Binary file added JavascriptVisualRelease/._.DS_Store
Binary file not shown.
Binary file added JavascriptVisualRelease/._ClosedHash2.JS
Binary file not shown.
Binary file added JavascriptVisualRelease/._QueueLL
Binary file not shown.
Binary file added JavascriptVisualRelease/._RedBlack.ps
Binary file not shown.
Binary file added JavascriptVisualRelease/._USFlogo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added JavascriptVisualRelease/._VisualizationLibrary
Binary file not shown.
Binary file added JavascriptVisualRelease/._contact.html
Binary file not shown.
Binary file added JavascriptVisualRelease/._faq.html
Binary file not shown.
Binary file added JavascriptVisualRelease/._slideTest.html
Binary file not shown.
Binary file added JavascriptVisualRelease/._template.html
Binary file not shown.
Binary file added JavascriptVisualRelease/._timages
Binary file not shown.
Binary file added JavascriptVisualRelease/._visualPages.css
Binary file not shown.
73 changes: 73 additions & 0 deletions JavascriptVisualRelease/AVLtree.html
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 added JavascriptVisualRelease/AlgorithmLibrary/._BFS.js
Binary file not shown.
Binary file not shown.
Binary file added JavascriptVisualRelease/AlgorithmLibrary/._BST.js
Binary file not shown.
Binary file added JavascriptVisualRelease/AlgorithmLibrary/._BTree.js~
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 added JavascriptVisualRelease/AlgorithmLibrary/._DFS.js
Binary file not shown.
Binary file not shown.
Binary file added JavascriptVisualRelease/AlgorithmLibrary/._DPFib.js
Binary file not shown.
Binary file added JavascriptVisualRelease/AlgorithmLibrary/._DPLCS.js
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 added JavascriptVisualRelease/AlgorithmLibrary/._Floyd.js
Binary file not shown.
Binary file added JavascriptVisualRelease/AlgorithmLibrary/._Graph.js
Binary file not shown.
Binary file added JavascriptVisualRelease/AlgorithmLibrary/._Hash.js
Binary file not shown.
Binary file added JavascriptVisualRelease/AlgorithmLibrary/._Heap.js~
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.
Loading

0 comments on commit d2c9e60

Please sign in to comment.