Exemplo n.º 1
0
 public Node Dequeue()
 {
     //Delete the node from queue
     return(linkedList.Pop());
 }
Exemplo n.º 2
0
 public Node Pop()
 {
     //Delete the node from stack
     return(linkedList.Pop());
 }