由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问leetcode上一题Merge Sorted Array
相关主题
一个小公司面经google电面2, 还就一个简单题
一个特别的inplace merge two sorted arrays问一个amazon的数组排序题
re: 面试归来,上面经回馈各位战友Facebook Phone interview
求一下这题解法。算法面试题
哪里有讲k-way merge的?amazon 二面情况诡异!
请教一下external sorting的问题再问一个算法题。
刷题刷到没自信了关于index的问题
amazon tel interview问一个merge k sorted array的问题
相关话题的讨论汇总
话题: sorted话题: array话题: merge话题: note话题: 空间
进入JobHunting版参与讨论
1 (共1页)
f*******4
发帖数: 64
1
Given two sorted integer arrays A and B, merge B into A as one sorted array.
Note:
You may assume that A has enough space to hold additional elements from B.
The number of elements initialized in A and B are m and n respectively.
Note里说,A有额外空间,用来合并。
但我觉得必须额外开一个m的空间,除了A[m+n]外,放一些需要swap的变量。
这题最小的空间复杂度能到多少?
d**e
发帖数: 6098
2
不需要额外的空间

array.

【在 f*******4 的大作中提到】
: Given two sorted integer arrays A and B, merge B into A as one sorted array.
: Note:
: You may assume that A has enough space to hold additional elements from B.
: The number of elements initialized in A and B are m and n respectively.
: Note里说,A有额外空间,用来合并。
: 但我觉得必须额外开一个m的空间,除了A[m+n]外,放一些需要swap的变量。
: 这题最小的空间复杂度能到多少?

l****c
发帖数: 782
3
从后往前merge就不需要其他space了,困困。

array.

【在 f*******4 的大作中提到】
: Given two sorted integer arrays A and B, merge B into A as one sorted array.
: Note:
: You may assume that A has enough space to hold additional elements from B.
: The number of elements initialized in A and B are m and n respectively.
: Note里说,A有额外空间,用来合并。
: 但我觉得必须额外开一个m的空间,除了A[m+n]外,放一些需要swap的变量。
: 这题最小的空间复杂度能到多少?

f*******4
发帖数: 64
4
原来如此。。。Thx
差距还好大,赶紧继续练。

【在 l****c 的大作中提到】
: 从后往前merge就不需要其他space了,困困。
:
: array.

m******6
发帖数: 82
5
把B里边值插入A种的合适位置,然后A种的元素进行移动

array.

【在 f*******4 的大作中提到】
: Given two sorted integer arrays A and B, merge B into A as one sorted array.
: Note:
: You may assume that A has enough space to hold additional elements from B.
: The number of elements initialized in A and B are m and n respectively.
: Note里说,A有额外空间,用来合并。
: 但我觉得必须额外开一个m的空间,除了A[m+n]外,放一些需要swap的变量。
: 这题最小的空间复杂度能到多少?

1 (共1页)
进入JobHunting版参与讨论
相关主题
问一个merge k sorted array的问题哪里有讲k-way merge的?
哪位大虾能贴一个 k way merge sorted arrays c++ code请教一下external sorting的问题
FB电面刷题刷到没自信了
k sorted array merge大家现场写一个heap?amazon tel interview
一个小公司面经google电面2, 还就一个简单题
一个特别的inplace merge two sorted arrays问一个amazon的数组排序题
re: 面试归来,上面经回馈各位战友Facebook Phone interview
求一下这题解法。算法面试题
相关话题的讨论汇总
话题: sorted话题: array话题: merge话题: note话题: 空间