Update File

A Demo Sample Test case added
This commit is contained in:
Sombit Bose 2020-05-26 20:58:51 +05:30 committed by GitHub
parent 2357e8bd69
commit 23df4b58d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,15 @@
/* Ascending priority queue using Linked List - Program to implement Ascending priority queue using Linked List */
/** Input State of Queue
1
2 2
1
3 2->3
2 3
3
Output
2
**/
#include <stdio.h>
#include <stdlib.h>