M trying to implement priority queue in singly linked list, but my program is not running proprly, display function is not diaplsying all values , plzz help me .. its my project:(
#include<iostream.h>
#include<conio.h>
struct node
{
int n,p,b; // Data members for getting Task no.
,Priority and Burst time respectively..//
node * ptr; //Pointer pointing to next node .///
};
class pqueu
{
private:
...
Post new comment