【劍指offer】面試題24:反轉鏈表(Java 實現)

輸入一個鏈表,反轉鏈表後,輸出新鏈表的表頭。node 代碼:this package offer; class Node4 {     int val;     Node4 next = null;     Node4(int val)     {         this.val = val;     } } public class ti24 {     public static Node4
相關文章
相關標籤/搜索