Skip to content

Commit

Permalink
fix: fix wrong heaps package and close TheAlgorithms#700
Browse files Browse the repository at this point in the history
  • Loading branch information
yanglbme committed Feb 6, 2019
1 parent 8b92c3f commit 46bbfaa
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DataStructures/Heaps/EmptyHeapException.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
*
*/
package Heaps;
package DataStructures.Heaps;

/**
* @author Nicolas Renard
Expand Down
2 changes: 1 addition & 1 deletion DataStructures/Heaps/Heap.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package Heaps;
package DataStructures.Heaps;

/**
* Interface common to heap data structures.<br>
Expand Down
2 changes: 1 addition & 1 deletion DataStructures/Heaps/HeapElement.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
*
*/
package Heaps;
package DataStructures.Heaps;

import java.lang.Double;
import java.lang.Object;
Expand Down
2 changes: 1 addition & 1 deletion DataStructures/Heaps/MaxHeap.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package Heaps;
package DataStructures.Heaps;

import java.util.ArrayList;
import java.util.List;
Expand Down
2 changes: 1 addition & 1 deletion DataStructures/Heaps/MinHeap.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
*
*/
package Heaps;
package DataStructures.Heaps;

import java.util.ArrayList;
import java.util.List;
Expand Down
2 changes: 1 addition & 1 deletion DataStructures/Heaps/MinPriorityQueue.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package Heaps;
package DataStructures.Heaps;
/* Minimum Priority Queue
* It is a part of heap data structure
* A heap is a specific tree based data structure
Expand Down

0 comments on commit 46bbfaa

Please sign in to comment.