Computer Science/61b/Homework/hw8/list/LinkedQueue.java

From lensowiki
Jump to: navigation, search
/* LinkedQueue.java */

package list;

public class LinkedQueue implements Queue {
	
	private SListNode head;
	private SListNode tail;
	private int size;
The author of this file is Jonathan Shewchuk; consequently, I cannot make it freely available.