LeetCode Algorithm 148. 排序链表

Posted Alex_996

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Algorithm 148. 排序链表相关的知识,希望对你有一定的参考价值。

148. 排序链表

Ideas

链表结构的经典题目。

不过我不想用经典方法做,哎,就是皮。

我把链表元素都拷贝到数组中,然后对数组排序,之后再把排完序之后的值赋回去。

骚的一批。

Code

Python

class Solution:
	def sortList(self, head: Optional[ListNode]) -> Optional[ListNode]:
		nums = []
		node = head
		while node:
			nums.append(node.val)
			node = node.next
		nums.sort()
		node = head
		for _, v in enumerate(nums):
			node.val = v
			node = node.next
		return head

以上是关于LeetCode Algorithm 148. 排序链表的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode Algorithm 147. 对链表进行插入排序

LeetCode Algorithm 169. 多数元素

LeetCode Algorithm 217. 存在重复元素

[LeetCode] 148. Sort List

leetcode148

[LeetCode] 148. 排序链表