找出两个含有相同元素个数的递增数列中第n小的数

本文介绍了一种O(log n)时间复杂度的算法,用于从两个已排序的数组中找到第n小的元素及中位数。通过递归二分查找的方式,在两个数组间高效定位目标元素。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.Description

You are given two arrays L1 and L2, each with n keys sorted in increasing order. For simplicity,you may assume that the keys are all distinct from each other.

(a) Describe an O(logn) time algorithm to find the nth smallest of the 2n keys.
(b) Describe an O(logn) time algorithm to find the n2th smallest (i.e., the median) of the 2n keys assuming that n is even.
2.Java implementation

public class BinarySearch
{
	public static int Find(int seq1[],int seq2[],int left1,int right1,int left2,int right2,int key)
	{
		int mid1=(left1+right1)/2;
		int mid2=(left2+right2)/2;
		
		if(left1>right1)
		{
			int index=left2+key-1;
			return seq2[index];
		}
		if(left2>right2)
		{
			int index=left1+key-1;
			return seq1[index];
		}
		if(key<=(mid1-left1+mid2-left2+1))
		{
			if(seq1[mid1]<=seq2[mid2])
			{
				right2=mid2-1;
				return Find(seq1,seq2,left1,right1,left2,right2,key);
			}
			else
			{
				right1=mid1-1;
				return Find(seq1,seq2,left1,right1,left2,right2,key);
			}
		}
		else 
		{
			//remove the elements which is smaller than the median value
			if(seq1[mid1]<=seq2[mid2])
			{
				int keyChange=mid1+1-left1;
				left1=mid1+1;
				key=key-keyChange;
				return Find(seq1,seq2,left1,right1,left2,right2,key);
			}
			else
			{
				int keyChange=mid2+1-left2;
				left2=mid2+1;
				key=key-keyChange;
				return Find(seq1,seq2,left1,right1,left2,right2,key);
			}
		}
	}
	public static void main(String[] args)
	{
		int seq1[]={2,3,5,8,10};
		int seq2[]={4,6,7,9,12};
		int left1=0,left2=0,right1=seq1.length-1,right2=seq2.length-1;
		int x1=seq1.length;
		int x2=seq1.length/2;
		int x1Result=Find(seq1,seq2,left1,right1,left2,right2,x1);
		System.out.println("the "+x1+"th smallest number is "+x1Result);
		int x2Result=Find(seq1,seq2,left1,right1,left2,right2,x2);
		System.out.println("the "+x2+"th smallest number is "+x2Result);
	}
	
}
Screenshot of the result:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值