docs: update the whole repository

* fix some bugs
* delete duplicate files
* format code
This commit is contained in:
yanglbme
2019-05-09 19:32:54 +08:00
parent 163db8521a
commit 29948363da
368 changed files with 4372 additions and 30841 deletions

View File

@ -1,3 +1,5 @@
package DataStructures.Queues;
import java.util.ArrayList;
public class GenericArrayListQueue<T> {

View File

@ -1,3 +1,5 @@
package DataStructures.Queues;
/**
* This class implements a PriorityQueue.
* <p>
@ -6,7 +8,6 @@
* In this example I give numbers that are bigger, a higher priority.
* Queues in theory have no fixed size but when using an array
* implementation it does.
*
*/
class PriorityQueue {
/**

View File

@ -1,3 +1,5 @@
package DataStructures.Queues;
/**
* This implements Queues by using the class Queue.
* <p>