Files
CSCI-1200/animations/hash_tables/index.html
2025-04-29 14:42:52 -04:00

19 lines
483 B
HTML

<!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>