We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d50aae commit a20d18bCopy full SHA for a20d18b
1 file changed
algorithm/sorting/heap/basic/code.js
@@ -11,7 +11,8 @@ function heapSort(array, size) {
11
temp = array[0];
12
array[0] = array[j];
13
array[j] = temp;
14
-
+
15
+ tracer._notify(0, j);
16
tracer._select(j);
17
18
heapify(array, j, 0);
0 commit comments