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