📄 linkedlistitr.java
字号:
/**
* @(#)LinkedListItr.java
*
*
* @author
* @version 1.00 2006/10/29
*/
package Polynomial;
public class LinkedListItr {
LinkedListItr(ListNode theNode)
{ current=theNode;
}
public boolean isPastEnd()
{ return current==null;
}
public CoefAndExp retrieve()
{ return isPastEnd( )?null:current.element;
}
public void advance( )
{ if(!isPastEnd( ))
current=current.next;
}
ListNode current;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -