You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run this repository, I figure out this small bug.
Can I add a small change like below?
public class HeapSort {
// Driver program
public static void main(String args[]) {
int arr[] = {12, 11, 13, 5, 6, 7};
**heap_sort ob = new heap_sort();**
ob.sort(arr);
System.out.println("Sorted array is");
printArray(arr);
}
}
The text was updated successfully, but these errors were encountered:
eunbeek
changed the title
Defining wrong class object name in Java/Misc/HeapSort.java file
Defined wrong class object name in Java/Misc/HeapSort.java file
Oct 9, 2020
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Please reopen this issue once you add more information and updates here. If this is not the case and you need some help, feel free to seek help from our Gitter or ping one of the reviewers. Thank you for your contributions!
When I run this repository, I figure out this small bug.
Can I add a small change like below?
public class HeapSort {
// Driver program
public static void main(String args[]) {
int arr[] = {12, 11, 13, 5, 6, 7};
}
The text was updated successfully, but these errors were encountered: