1.3.19给出一段代码,删除链表的尾结点,其中链表的首结点为first.答:单链表的实现方式:Node x=first;while(x.next!=last) x=x.next;last=x;last.next=null;