Added priority queue design pattern (#888)

* added priority queue design pattern

* Minor Refactored, fixed review comments
This commit is contained in:
Ranjeet
2019-08-31 23:40:35 +05:30
committed by Ilkka Seppälä
parent 11c0550559
commit 7f6067f19f
10 changed files with 616 additions and 7 deletions

17
pom.xml
View File

@ -17,7 +17,9 @@
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
--><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId>
@ -162,12 +164,13 @@
<module>trampoline</module>
<module>serverless</module>
<module>ambassador</module>
<module>acyclic-visitor</module>
<module>collection-pipeline</module>
<module>master-worker-pattern</module>
<module>spatial-partition</module>
<module>commander</module>
<module>typeobjectpattern</module>
<module>acyclic-visitor</module>
<module>collection-pipeline</module>
<module>master-worker-pattern</module>
<module>spatial-partition</module>
<module>priority-queue</module>
<module>commander</module>
<module>typeobjectpattern</module>
</modules>
<repositories>