链表的排序-CSDN博客

网站介绍:文章浏览阅读41次。直接拿走运行可那种哦,欢迎多多点赞,所有的都是原创哦注意静态函数 public static ListNode sort(ListNode root){ if (root == null || root.next == null) return root; ListNode node = root; int temp; while (node!=null){ ListNode nextNode = node.