当前位置:   article > 正文

力扣题148排序链表_力扣148js

力扣148js

给你链表的头结点 head ,请将其按 升序 排列并返回 排序后的链表 。

进阶:

你可以在 O(n log n) 时间复杂度和常数级空间复杂度下,对链表进行排序吗?
 

示例 1:

输入:head = [4,2,1,3]
输出:[1,2,3,4]

示例 2:

输入:head = [-1,5,3,4,0]
输出:[-1,0,3,4,5]

示例 3:

输入:head = []
输出:[]

1.自己的做法:利用一个辅助空间优先队列,可以按顺序存储链表中每个节点,然后再按序把队列中的节点取出拼接成一个新链表。

  1. /**
  2. * Definition for singly-linked list.
  3. * public class ListNode {
  4. * int val;
  5. * ListNode next;
  6. * ListNode() {}
  7. * ListNode(int val) { this.val = val; }
  8. * ListNode(int val, ListNode next) { this.val = val; this.next = next; }
  9. * }
  10. */
  11. class Solution {
  12. public ListNode sortList(ListNode head) {
  13. if(head == null){
  14. return null;
  15. }
  16. //用一个优先队列,进行排序
  17. PriorityQueue<ListNode> pq = new PriorityQueue<>(new Comparator<ListNode>(){
  18. public int compare(ListNode node1,ListNode node2){
  19. return node1.val - node2.val;
  20. }
  21. });
  22. //将链表中的元素按照顺序加入优先队列
  23. while(head != null){
  24. pq.offer(head);
  25. head = head.next;
  26. }
  27. ListNode pHead = new ListNode(0);//标兵头节点
  28. ListNode pNode = pHead;
  29. while(!pq.isEmpty()){//将优先队列中的节点按序拼接成链表
  30. pNode.next = pq.poll();
  31. pNode = pNode.next;
  32. }
  33. pNode.next = null;
  34. return pHead.next;
  35. }
  36. }

2.进阶:对链表的排序要想到归并排序

        ①自顶向下归并排序。先不断地将链表从中间开始拆分,然后再两两合并。利用递归实现。

          两两拼接有序数组,参考力扣题21合并两个有序链表_xxyneymar的博客-CSDN博客

  1. class Solution {
  2. public ListNode sortList(ListNode head) {
  3. return sortList(head,null);
  4. }
  5. public ListNode sortList(ListNode startNode,ListNode endNode){
  6. if(startNode == null){//节点不存在时
  7. return startNode;
  8. }
  9. if(startNode.next == endNode){//只有一个节点时(mid节点是作为后半部分的起始节点)
  10. startNode.next = null;
  11. return startNode;
  12. }
  13. ListNode slow = startNode;//慢指针
  14. ListNode fast = startNode;//快指针
  15. while(fast != endNode){
  16. slow = slow.next;
  17. fast = fast.next;
  18. if(fast != endNode){//快指针还没到末尾,就再走一步,相当于慢指针走一步,快指针走两步
  19. fast = fast.next;
  20. }
  21. }
  22. ListNode mid = slow;//慢指针指向的节点就是中间节点
  23. ListNode list1 = sortList(startNode,mid);//左子链表
  24. ListNode list2 = sortList(mid,endNode);//右子链表
  25. ListNode sort = merge(list1,list2);//按序合并左右子链表
  26. return sort;
  27. }
  28. public ListNode merge(ListNode head1,ListNode head2){
  29. ListNode head = new ListNode(0);
  30. ListNode pNode = head;
  31. ListNode pNode1 = head1;
  32. ListNode pNode2 = head2;
  33. while(pNode1 != null && pNode2 != null){
  34. if(pNode1.val < pNode2.val){
  35. pNode.next = pNode1;
  36. pNode1 = pNode1.next;
  37. }else{
  38. pNode.next = pNode2;
  39. pNode2 = pNode2.next;
  40. }
  41. pNode = pNode.next;
  42. }
  43. if(pNode1 != null){
  44. pNode.next = pNode1;
  45. }
  46. if(pNode2 != null){
  47. pNode.next = pNode2;
  48. }
  49. return head.next;
  50. }
  51. }

        ②自底向上归并排序。从长度为1的子链表,拼接成长度为2的子链表,再拼接成长度为4的慢慢向上进行拼接。

  1. class Solution {
  2. public ListNode sortList(ListNode head) {
  3. if(head == null){
  4. return null;
  5. }
  6. int length = 0;
  7. ListNode pNode = head;
  8. while(pNode != null){
  9. length++;
  10. pNode = pNode.next;
  11. }
  12. ListNode dummyHead = new ListNode(0,head);//创建一个标兵
  13. for(int subLength = 1;subLength < length;subLength <<= 1){
  14. ListNode prev = dummyHead;
  15. ListNode curr = dummyHead.next;
  16. while(curr != null){
  17. ListNode list1 = curr;
  18. for(int i = 1;i < subLength && curr.next != null;i++){//截取第一个子链表
  19. curr = curr.next;
  20. }
  21. ListNode list2 = curr.next;
  22. curr.next = null;//第一个子链表的末尾指向null
  23. curr = list2;
  24. for(int i = 1;i < subLength && curr != null && curr.next != null;i++){//截取第二个子链表
  25. curr = curr.next;
  26. }
  27. ListNode next = null;//表示截完两个子链表后剩余的链表
  28. if(curr != null){
  29. next = curr.next;
  30. curr.next = null;//第二个子链表的末尾只想null
  31. }
  32. ListNode merged = merge(list1,list2);//对前两个链表进行归并排序
  33. prev.next = merged;
  34. while(prev.next != null){
  35. prev = prev.next;//找到末尾节点,为了之后的拼接
  36. }
  37. curr = next;//对剩余链表进行拼接
  38. }
  39. }
  40. return dummyHead.next;
  41. }
  42. public ListNode merge(ListNode head1,ListNode head2){
  43. ListNode head = new ListNode(0);
  44. ListNode pNode = head;
  45. ListNode pNode1 = head1;
  46. ListNode pNode2 = head2;
  47. while(pNode1 != null && pNode2 != null){
  48. if(pNode1.val < pNode2.val){
  49. pNode.next = pNode1;
  50. pNode1 = pNode1.next;
  51. }else{
  52. pNode.next = pNode2;
  53. pNode2 = pNode2.next;
  54. }
  55. pNode = pNode.next;
  56. }
  57. if(pNode1 != null){
  58. pNode.next = pNode1;
  59. }
  60. if(pNode2 != null){
  61. pNode.next = pNode2;
  62. }
  63. return head.next;
  64. }
  65. }

题源:力扣

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/277177
推荐阅读
相关标签
  

闽ICP备14008679号