This repository has been archived by the owner on Oct 19, 2022. It is now read-only.
forked from RodrigoDLPontes/visualization-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (61 loc) · 4.71 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<html>
<head>
<link rel="stylesheet" href="visualPages.css">
<title> CS1332 Data Structures Visualizations </title>
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<div class="container">
<div class="header">
<h1>CS1332 Data Structures Visualizations</h1>
</div>
<div class="menu">
<ul>
<li> <a href="index.html">Home</a> </li>
<li> <a href="about.html">About</a> </li>
</ul>
</div>
<div class="content">
<input class="button" type="button" onclick="location='ArrayList.html'" value="ArrayList" />
<input class="button" type="button" onclick="location='LinkedList.html'" value="Singly LinkedList" />
<input class="button" type="button" onclick="location='DoublyLinkedList.html'" value="Doubly LinkedList" />
<input class="button" type="button" onclick="location='SinglyCircularlyLinkedList.html'" value="Circularly LinkedList" />
<!-- <input class="button" type="button" onclick="location=''" value="Doubly Circularly LinkedList"/> -->
<input class="button" type="button" onclick="location='StackArray.html'" value="Stack (ArrayList)" />
<input class="button" type="button" onclick="location='StackLL.html'" value="Stack (LinkedList)" />
<input class="button" type="button" onclick="location='QueueArray.html'" value="Queue (ArrayList)" />
<input class="button" type="button" onclick="location='QueueLL.html'" value="Queue (LinkedList)" />
<input class="button" type="button" onclick="location='DequeLL.html'" value="Deque (LinkedList)" />
<input class="button" type="button" onclick="location='BST.html'" value="Binary Search Tree" />
<input class="button" type="button" onclick="location='Heap.html'" value="Heaps / PQs" />
<input class="button" type="button" onclick="location='SkipList.html'" value="SkipList" />
<input class="button" type="button" onclick="location='ClosedHash.html'" value="HashMap (Probing)" />
<input class="button" type="button" onclick="location='OpenHash.html'" value="HashMap (Chaining)" />
<input class="button" type="button" onclick="location='SplayTree.html'" value="SplayTree" />
<input class="button" type="button" onclick="location='AVLtree.html'" value="AVL" />
<input class="button" type="button" onclick="location='BTree.html'" value="2-4 Tree" />
<input class="button" type="button" onclick="location='BubbleSort.html'" value="Bubble Sort" />
<input class="button" type="button" onclick="location='CocktailSort.html'" value="Cocktail Shaker Sort" />
<input class="button" type="button" onclick="location='InsertionSort.html'" value="Insertion Sort" />
<input class="button" type="button" onclick="location='SelectionSort.html'" value="Selection Sort" />
<input class="button" type="button" onclick="location='QuickSort.html'" value="QuickSort" />
<input class="button" type="button" onclick="location='QuickSelect.html'" value="QuickSelect" />
<input class="button" type="button" onclick="location='MergeSort.html'" value="MergeSort" />
<input class="button" type="button" onclick="location='LSDRadix.html'" value="LSD Radix Sort"/>
<!-- <input class="button" type="button" onclick="location=''" value="MSD Radix Sort"/> -->
<input class="button" type="button" onclick="location='BruteForce.html'" value="Brute Force" />
<input class="button" type="button" onclick="location='BoyerMoore.html'" value="Boyer-Moore" />
<input class="button" type="button" onclick="location='KMP.html'" value="KMP" />
<input class="button" type="button" onclick="location='RabinKarp.html'" value="Rabin-Karp" />
<input class="button" type="button" onclick="location='BFS.html'" value="Breadth-First Search" />
<input class="button" type="button" onclick="location='DFS.html'" value="Depth-First Search" />
<input class="button" type="button" onclick="location='Dijkstra.html'" value="Dijkstra" />
<input class="button" type="button" onclick="location='Prim.html'" value="Prim's" />
<input class="button" type="button" onclick="location='Kruskal.html'" value="Kruskal's" />
<input class="button" type="button" onclick="location='DPLCS.html'" value="LCS" />
<input class="button" type="button" onclick="location='Floyd.html'" value="Floyd-Warshall" />
</div>
<div class="footer">Copyright 2011 <a href="http://www.cs.usfca.edu/galles">David Galles</a> </div>
</div>
</body>
</html>