⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 linkedlistitr.java

📁 Java是最优秀的高级编程语言之一,多项式的加法运算,体现了链表数据结构的优势.
💻 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 + -