fix: fix wrong heaps package and close #700

- Fix #700
This commit is contained in:
yanglbme 2019-02-07 00:11:13 +08:00
parent 8b92c3fdbe
commit 46bbfaa0e8
6 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
/**
*
*/
package Heaps;
package DataStructures.Heaps;
/**
* @author Nicolas Renard

View File

@ -1,4 +1,4 @@
package Heaps;
package DataStructures.Heaps;
/**
* Interface common to heap data structures.<br>

View File

@ -1,7 +1,7 @@
/**
*
*/
package Heaps;
package DataStructures.Heaps;
import java.lang.Double;
import java.lang.Object;

View File

@ -1,4 +1,4 @@
package Heaps;
package DataStructures.Heaps;
import java.util.ArrayList;
import java.util.List;

View File

@ -1,7 +1,7 @@
/**
*
*/
package Heaps;
package DataStructures.Heaps;
import java.util.ArrayList;
import java.util.List;

View File

@ -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