Files
CSCI-1200/animations/heap/push/index.html
2023-09-11 21:11:17 -04:00

20 lines
460 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Min Heap: Insert a node</title>
<script src="../../konva.js"></script>
</head>
<body>
<h1>Min Heap: Insert a Node</h1>
<p>This animation shows how to insert a node of value 10 in a Min Heap. Click the "next step" button to run the animation. </p>
<br>
<button onclick="nextstep()">next step</button>
<div id="container"></div>
<script src="push.js"></script>
</body>
</html>