LeetCode 206 反轉鍊錶

2021-09-22 18:03:37 字數 1958 閱讀 8323

1.題目描述

反轉乙個單鏈表。

示例:輸入: 1->2->3->4->5->null

輸出: 5->4->3->2->1->null

高階:你可以迭代或遞迴地反轉鍊錶。你能否用兩種方法解決這道題?

2. 自己的常規解法:

/**

* definition for singly-linked list.

* public class listnode

* }*/class solution

listnode pos = null;

listnode lastnode = null;

lastnode = head;

pos = head.next;

head.next = null;

head = pos;

while(head.next != null)

head.next = lastnode;

return head;}}

2.1 eclipse 完整可除錯**:

package single_100;

/** * definition for singly-linked list.

* public class listnode

* }*//**

* todo : 建立乙個 鍊錶,翻轉鍊錶

* @author infosec_jy

* */

public class reverselist_206 ;

listnode head = new listnode(vals[0]);

listnode pos = head;

for(int i = 1;i < vals.length; i++)

// listnode head = null; 考慮 head 為 null

// listnode head = new listnode(6); 考慮 head.next 為 null

listnode result = reverselist(head);

while(head.next != null)

system.out.print(head.val);

} public static listnode reverselist(listnode head)

listnode pos = null;

listnode lastnode = null;

lastnode = head;

pos = head.next;

head.next = null;

head = pos;

while(head.next != null)

head.next = lastnode;

return head;}}

3. 效能評級:

4. 思考過程:

第一次  有考慮 儲存到 stringbuffer中,再轉為 int 陣列,實現。感覺會比較消耗空間,想法作廢。

現在用 遞迴 做,感覺 不複雜,為什麼 效能差這麼多呢。  要考慮。

5. 後期優化:

大神的解法:

public static listnode reverselist(listnode head) 

return pre;

}

效能:

思考:  盡量不定義多餘變數,盡量定義 區域性變數。爭取每個變數 都有其特殊且簡單的意義。

leetcode 206 鍊錶反轉

一 題目大意 反轉乙個單鏈表,實現遞迴和非遞迴兩種形式 二 鍊錶節點 public class listnode 三,分析 1,非遞迴解決方案 最容易想到的是使用三個指標,p1,p2,p3,遍歷鍊錶事項反轉。這裡需要注意的是,p1,p2,p3的初始化,不同初始化應該考慮煉表頭的不同處理。一般的初始是...

LeetCode 206 反轉鍊錶

反轉乙個單鏈表。高階 鍊錶可以迭代或遞迴地反轉。你能否兩個都實現一遍?設定三個指標分別指向連續的三個節點,每次完成節點的反向就把三個節點同時後移,直到所有節點反轉。definition for singly linked list.struct listnode class solution ret...

LeetCode 206 反轉鍊錶

206.反轉鍊錶 反轉乙個單鏈表。輸入 1 2 3 4 5 null 輸出 5 4 3 2 1 null非遞迴解法 1.class solution object defreverselist self,head type head listnode rtype listnode res none ...