单链表中创建与遍历

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

 

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

SQL - 从两个表中创建与回显数据的关系

如何在 EF7(Core) 中创建与同一个表的多个关系?

如何在代码中创建与 @"H:|-10-[view]" 完全相同的 NSLayoutConstraint 对象?

在 C 中创建单链表

单链表遍历与优化

在 VS2013 中创建与 VC++ 6.0 向后兼容的 Dll