Find the median of two sorted arrays.
There are two sorted arrays A and B of size m and n respectively. Find the
median of the two sorted arrays. The overall run time complexity should be O
(log (m+n)).
All I could think of is a O(lg(m)*lg(n)) result...
请大虾指点。感激不尽。
【在 g******0 的大作中提到】 : Find the median of two sorted arrays. : There are two sorted arrays A and B of size m and n respectively. Find the : median of the two sorted arrays. The overall run time complexity should be O : (log (m+n)). : All I could think of is a O(lg(m)*lg(n)) result... : 请大虾指点。感激不尽。