(String args[])
| 101 | |
| 102 | // Driver program |
| 103 | public static void main(String args[]) |
| 104 | { |
| 105 | int arr[] = {12, 11, 13, 5, 6, 7}; |
| 106 | int n = arr.length; |
| 107 | |
| 108 | HeapSort ob = new HeapSort(); |
| 109 | ob.sort(arr); |
| 110 | |
| 111 | System.out.println("Sorted array is"); |
| 112 | printArray(arr); |
| 113 | } |
| 114 | } |
nothing calls this directly
no test coverage detected