科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道成人版java数据结构之单链表I建立和遍历

成人版java数据结构之单链表I建立和遍历

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

成人版java数据结构之单链表的建立和遍历

作者:builder.com.cn 来源:来源网站 2007年11月25日

关键字: java

  • 评论
  • 分享微博
  • 分享邮件

package org.huchao.baseStructs;
/**
 * 成人版java数据结构之单链表的建立和遍历
 * @author huchao
 * @since 2007.11.
 */
public class Node1 {

 private Object item;
 
 private Node1 next;
 
 public Node1(Object newItem){
  item = newItem;
  next = null;
 }
 
 public Node1(Object newItem,Node1 nextNode){
  item = newItem;
  next = nextNode;
 }
 /**
  * @param args
  */
 public static void main(String[] args) {
  // TODO Auto-generated method stub
  Node1 head = new Node1(new String("上校"));
  Node1 second = new Node1(new String("上尉"),head);
  Node1 third = new Node1(new String("中尉"),second);
  System.out.println("当兵的过河,河里有吃球鱼,该怎么过呢?");
  for(Node1 curr = third;null != curr;curr = curr.getNext()){
   if(isLast(curr)){
    System.out.print(curr.getItem() + "走在最后面");
   }else
   System.out.println(curr.getItem() + "的P眼被" + curr.getNext().item + "的的JJ插入");
   
  }
 }

 public static boolean isLast(Node1 node){
  if(null == node.getNext())
   return true;
  return false;
 }
 public Object getItem() {
  return item;
 }

 public void setItem(Object item) {
  this.item = item;
 }

 public Node1 getNext() {
  return next;
 }

 public void setNext(Node1 next) {
  this.next = next;
 }



Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=1901226

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章