adding hash table animations

This commit is contained in:
Jidong Xiao
2025-04-28 17:06:27 -04:00
committed by JamesFlare1212
parent fea90f2b4d
commit cc21696e46
3 changed files with 679 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Separate Chaining Based Hash Table</title>
<script src="../konva.js"></script>
</head>
<body>
<h1>Separate Chaining Based Hash Table</h1>
<p>This is the animation of Separate Chaining Based Hash Table. Click the "next step" button to run the animation.</p>
<button onclick="nextstep()">next step</button>
<div id="container"></div>
<script src="main.js"></script>
</body>
</html>