Skip to content

Commit 46bbfaa

Browse files
committed
fix: fix wrong heaps package and close TheAlgorithms#700
- Fix TheAlgorithms#700
1 parent 8b92c3f commit 46bbfaa

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

DataStructures/Heaps/EmptyHeapException.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
*
33
*/
4-
package Heaps;
4+
package DataStructures.Heaps;
55

66
/**
77
* @author Nicolas Renard

DataStructures/Heaps/Heap.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Heaps;
1+
package DataStructures.Heaps;
22

33
/**
44
* Interface common to heap data structures.<br>

DataStructures/Heaps/HeapElement.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
*
33
*/
4-
package Heaps;
4+
package DataStructures.Heaps;
55

66
import java.lang.Double;
77
import java.lang.Object;

DataStructures/Heaps/MaxHeap.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Heaps;
1+
package DataStructures.Heaps;
22

33
import java.util.ArrayList;
44
import java.util.List;

DataStructures/Heaps/MinHeap.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
*
33
*/
4-
package Heaps;
4+
package DataStructures.Heaps;
55

66
import java.util.ArrayList;
77
import java.util.List;

DataStructures/Heaps/MinPriorityQueue.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package Heaps;
1+
package DataStructures.Heaps;
22
/* Minimum Priority Queue
33
* It is a part of heap data structure
44
* A heap is a specific tree based data structure

0 commit comments

Comments
 (0)