Пример #1
0
 public Queue()
 {
     queueData = new SinglyLinkedList();//this actually allocates memory
 }
Пример #2
0
 //constructor
 public Stack()
 {
     // This allocates memory.
     stackData = new SinglyLinkedList();
 }