单链表的创建与遍历

Posted yingpu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单链表的创建与遍历相关的知识,希望对你有一定的参考价值。

import java.util.Stack;
public class Reverse{
    class LNode{
        int data;
        LNode next;
        public LNode(int data){
            this.data=data;
        }
    }
     public static void main(String []args){
        Reverse r = new Reverse();
        for(int i=1;i<=10;i++){
            r.add(i);
        }
        r.print(r.head); 
     }
     public void add(int i){
        if(head==null){
            head=new LNode(i);
            current = head;
        }else{
            current.next=new LNode(i);
            current = current.next;
        }
     }
     public void print(LNode node){
         if(node==null) return;
         current = node;
         while(current!=null){
            System.out.println(current.data);
            current=current.next;
         }
     }
}


Language Version:  JDK 10.0.1

 

以上是关于单链表的创建与遍历的主要内容,如果未能解决你的问题,请参考以下文章

线性表的链式存储——单链表的遍历与优化

数据结构开发:静态单链表的实现

单链表的创建插入删除遍历的Go实现

单链表的创建插入删除遍历的Go实现

单链表的创建,插入,删除,遍历

第二十四课 单链表的遍历与优化