Merge Sort Array and Merge Sort Linked List

2024-09-04 15:18
文章标签 list merge linked array sort

本文主要是介绍Merge Sort Array and Merge Sort Linked List,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Merge Sort Array: 看完stanford的 CS106B的video,https://www.youtube.com/watch?v=LlNawf0JeF0&list=PLnfg8b9vdpLn9exZweTJx44CII1bYczuk&index=55 醍醐灌顶;

public class Solution {/*** @param A: an integer array* @return: nothing*/public void sortIntegers2(int[] A) {// merge sort;if(A == null || A.length == 0) return;int[] temp = new int[A.length];mergeSort(A, 0, A.length-1, temp);}private void mergeSort(int[] A, int start, int end, int[] temp) {if(start >= end) {return;}int mid = start + (end - start) / 2;mergeSort(A, start, mid, temp);mergeSort(A, mid+1, end, temp);merge(A, start, end, temp);}private void merge(int[] A, int start, int end, int[] temp) {int mid = start + (end - start) / 2;int astart = start;int bstart = mid+1;int index = astart; // NOTE: index is astart;while(astart <= mid && bstart <= end) {if(A[astart] < A[bstart]) {temp[index++] = A[astart++];} else { // A[bstart] < A[astart];temp[index++] = A[bstart++];}}while(astart <= mid) {temp[index++] = A[astart++];}while(bstart <= end) {temp[index++] = A[bstart++];}// give temp to A;for(int i=start; i<=end; i++){A[i] = temp[i];}}
}

Merge Sort LinkedList:

Sort a linked list in O(n log n) time using constant space complexity.

思路:merge sort 是nlogn

注意: 

1. 分开两个list,找中点的时候,一般是找中点的前一个点,因为前面的list最后一个需要变成null,跟后面分开。

2. merge的时候,为了返回head node必须有个dump,hold住head,然后有个cur作为指针,连接下一个node。

/*** Definition for singly-linked list.* public class ListNode {*     int val;*     ListNode next;*     ListNode(int x) { val = x; }* }*/
class Solution {private ListNode findMiddle(ListNode node) {ListNode dummpy = new ListNode(0);dummpy.next = node;ListNode slow = dummpy;ListNode fast = dummpy;while(fast != null && fast.next != null) {slow = slow.next;fast = fast.next.next;}return slow;}public ListNode sortList(ListNode head) {if(head == null || head.next == null) {return head;}ListNode slow = findMiddle(head);ListNode newhead = slow.next;slow.next = null;ListNode l1 = sortList(head);ListNode l2 = sortList(newhead);return MergeTwoSortedList(l1, l2);}private ListNode MergeTwoSortedList(ListNode l1, ListNode l2) {ListNode dummpy = new ListNode(0);ListNode cur = dummpy;while(l1 != null && l2 != null) {if(l1.val < l2.val) {cur.next = l1;l1 = l1.next;cur = cur.next;} else {cur.next = l2;l2 = l2.next;cur = cur.next;}}if(l1 != null) {cur.next = l1;}if(l2 != null) {cur.next = l2;}return dummpy.next;}
}

3. 这题再联想到:如何用 insertion sort 去sort integer array和 linked list

 

 

 

这篇关于Merge Sort Array and Merge Sort Linked List的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1136324

相关文章

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c

Collection List Set Map的区别和联系

Collection List Set Map的区别和联系 这些都代表了Java中的集合,这里主要从其元素是否有序,是否可重复来进行区别记忆,以便恰当地使用,当然还存在同步方面的差异,见上一篇相关文章。 有序否 允许元素重复否 Collection 否 是 List 是 是 Set AbstractSet 否

【Python报错已解决】AttributeError: ‘list‘ object has no attribute ‘text‘

🎬 鸽芷咕:个人主页  🔥 个人专栏: 《C++干货基地》《粉丝福利》 ⛺️生活的理想,就是为了理想的生活! 文章目录 前言一、问题描述1.1 报错示例1.2 报错分析1.3 解决思路 二、解决方法2.1 方法一:检查属性名2.2 步骤二:访问列表元素的属性 三、其他解决方法四、总结 前言 在Python编程中,属性错误(At

stl的sort和手写快排的运行效率哪个比较高?

STL的sort必然要比你自己写的快排要快,因为你自己手写一个这么复杂的sort,那就太闲了。STL的sort是尽量让复杂度维持在O(N log N)的,因此就有了各种的Hybrid sort algorithm。 题主你提到的先quicksort到一定深度之后就转为heapsort,这种是introsort。 每种STL实现使用的算法各有不同,GNU Standard C++ Lib

List list = new ArrayList();和ArrayList list=new ArrayList();的区别?

List是一个接口,而ArrayList 是一个类。 ArrayList 继承并实现了List。 List list = new ArrayList();这句创建了一个ArrayList的对象后把上溯到了List。此时它是一个List对象了,有些ArrayList有但是List没有的属性和方法,它就不能再用了。而ArrayList list=new ArrayList();创建一对象则保留了A

处理List采用并行流处理时,通过ForkJoinPool来控制并行度失控的问题

在使用parallelStream进行处理list时,如不指定线程池,默认的并行度采用cpu核数进行并行,这里采用ForJoinPool来控制,但循环中使用了redis获取key时,出现失控。具体上代码。 @RunWith(SpringRunner.class)@SpringBootTest(classes = Application.class)@Slf4jpublic class Fo

【uva】11536-Smallest Sub-Array(区间移动问题)

一个区间移动的问题,1A了,感觉没什么好说的。。 13975926 11536 Smallest Sub-Array Accepted C++ 0.809 2014-08-01 11:00:20 #include<cstdio>#include<cstring>#include<iostream>using namespace std;#define INF 1 << 30

leetCode#448. Find All Numbers Disappeared in an Array

Description Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements of [1, n] inclusive that do not appear in this

Java中集合类Set、List和Map的区别

Java中的集合包括三大类,它们是Set、List和Map,它们都处于java.util包中,Set、List和Map都是接口,它们有各自的实现类。Set的实现类主要有HashSet和TreeSet,List的实现类主要有ArrayList,Map的实现类主要有HashMap和TreeMap。那么它们有什么区别呢? Set中的对象不按特定方式排序,并且没有重复对象。但它的有些实现类能对集合中的对