java實現(xiàn)單鏈表之逆序
更新時間:2015年07月21日 16:15:34 投稿:mrr
這篇文章主要介紹了應用java語言實現(xiàn)單鏈表逆序,,需要的朋友可以參考下
下面一段代碼準確的介紹了java實現(xiàn)單鏈表逆序,具體內(nèi)容就不做詳解了,有需要的朋友可以直接拷貝了
package com.ckw.mianshi; /** * java 實現(xiàn)單鏈表的逆序 * @author Administrator * */ public class SingleLinkedReverse { class Node{ int data; Node next; public Node(int data){ this.data = data; } } public static void main(String[] args) { SingleLinkedReverse slr = new SingleLinkedReverse(); Node head, tail; head = tail = slr.new Node(0); for(int i=1; i<10; i++){ Node p = slr.new Node(i); tail.next = p; tail = p; } tail = head; while(tail != null){ System.out.print(tail.data+ ); tail = tail.next; } head = reverse(head); System.out.println( ); while(head != null){ System.out.print(head.data+ ); head = head.next; } } private static Node reverse(Node head) { Node p1,p2 = null; p1 = head; while(head.next != null){ p2 = head.next; head.next = p2.next; p2.next = p1; p1 = p2; } return p2; } } 測試結(jié)果: 0 1 2 3 4 5 6 7 8 9 9 8 7 6 5 4 3 2 1 0以上是java實現(xiàn)單鏈表逆序的代碼,希望大家能夠喜歡。
相關(guān)文章
Java 中的CharArrayReader 介紹_動力節(jié)點Java學院整理
CharArrayReader 是字符數(shù)組輸入流。它和ByteArrayInputStream類似,只不過ByteArrayInputStream是字節(jié)數(shù)組輸入流,而CharArray是字符數(shù)組輸入流。CharArrayReader 是用于讀取字符數(shù)組,它繼承于Reader2017-05-05關(guān)于Tomcat出現(xiàn)The origin server did not find a current represent
這篇文章主要介紹了關(guān)于Tomcat出現(xiàn)The origin server did not find a current representation for the target resourc...的問題,感興趣的小伙伴們可以參考一下2020-08-08