Skip to content

Commit 58e1bca

Browse files
committed
Modified Data Misc folder .java file name and class name
1 parent 1a953fe commit 58e1bca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Misc/heap_sort.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
public class HeapSort
1+
public class heap_sort
22
{
33
public void sort(int arr[])
44
{
@@ -64,7 +64,7 @@ public static void main(String args[])
6464
int arr[] = {12, 11, 13, 5, 6, 7};
6565
int n = arr.length;
6666

67-
HeapSort ob = new HeapSort();
67+
heap_sort ob = new heap_sort();
6868
ob.sort(arr);
6969

7070
System.out.println("Sorted array is");

0 commit comments

Comments
 (0)