public Node Dequeue() { //Delete the node from queue return(linkedList.Pop()); }
public Node Pop() { //Delete the node from stack return(linkedList.Pop()); }