Ejemplo n.º 1
0
 public void Add(string str,int aT,int bT,int priority)
 {
     process nw = new process(str, aT, bT, priority);
     if (isEmpty()){ head = nw; }
     else{
         process tmp=head;
         head = nw;
         head.set_next(tmp);
     }
 }