算法设计与分析:最接近对点问题(Java)

算法设计与分析:最接近对点问题(Java),第1张

算法设计分析:最接近对点问题(Java) 最接近对点问题:
import javax.swing.JOptionPane;
 
public class ClosestPair {
	public static class MergeSort{
		public static void mergeSort(Comparable a[]){
			Comparable b[] = new Comparable[a.length];
			int s = 1;
			while(s < a.length){
				mergePass(a,b,s);
				s += s;
				mergePass(b,a,s);
				s += s;
			}
		}
		public static void mergePass(Comparable x[],Comparable y[],int s){
			int i = 0;
			while(i <= x.length - 2 * s){
				merge(x,y,i,i + s - 1,i + 2 * s - 1);
				i = i + 2 * s;
			}
			if(i + s < x.length)
				merge(x,y,i,i + s - 1,x.length - 1);
			else
				
				for(int j = i;j < x.length;j ++)
					y[j] = x[j];
		}
		public static void merge(Comparable c[],Comparable d[],int l,int m,int r){
			int i = l,j = m + 1,k = l;
			while((i <= m) && (j <= r))
				if(c[i].compareTo(c[j]) <= 0){
					d[k ++] = c[i ++];
				}
				else
					d[k ++] = c[j ++];
			if(i > m)
				for(int q = j;q <= r;q ++)
					d[k ++] = c[q];
			else
				for(int q = i;q <= m;q ++)
					d[k ++] = c[q];
		}
	}
	public static class Point{
		double x,y;
		public Point(double xx,double yy){
			x = xx;
			y = yy;
		}
	}
	public static class Point1 extends Point implements Comparable{
		int id;
		public Point1(double xx,double yy,int theID){
			super(xx,yy);
			id = theID;
		}
		public int compareTo(Object x){
			double xx = ((Point1)x).x;
			if(this.x < xx)
				return -1;
			if(this.x == xx)
				return 0;
			return 1;
		}
		public boolean equals(Object x){
			return this.x == ((Point1)x).x;
		}
		public void getID(){
			System.out.println(id);
		}
	}
	public static class Point2 extends Point implements Comparable{
		int p;
		public Point2(double xx,double yy,int pp){
			super(xx,yy);
			p = pp;
		}
		public int compareTo(Object x){
			double xy = ((Point2)x).y;
			if(this.y < xy)
				return -1;
			if(this.y == xy)
				return 0;
			return 1;
		}
		public boolean equals(Object x){
			return this.y == ((Point2)x).y;
		}
		public void getp(){
			System.out.println(p);
		}
	}
	public static class Pair{
		Point1 a;
		Point1 b;
		double dist;
		public Pair(Point1 aa,Point1 bb,double dd){
			a = aa;
			b = bb;
			dist = dd;
		}
		public void print(){
			System.out.println("The serial number of the output point A:");
			a.getID();
			System.out.println("Serial number of output point B:");
			b.getID();
			System.out.println("Output the distance between two points:");
			System.out.println(dist);
		}
	}
	public static double dist(Point u,Point v){
		double dx = u.x - v.x;
		double dy = u.y - v.y;
		return Math.sqrt(dx * dx + dy * dy);
	}
	public static Pair cpair2(Point1 x[]){
		if(x.length < 2)
			return null;
		MergeSort.mergeSort(x);
		Point2 y[] = new Point2[x.length];
		for(int i=0;i < x.length;i ++)
			y[i] = new Point2(x[i].x,x[i].y,i);
		MergeSort.mergeSort(y);
		Point2 z[] = new Point2[x.length];
		return closestPair(x,y,z,0,x.length - 1);
	}
	
	private static Pair closestPair(Point1 x[],Point2 y[],Point2 z[],int l,int r){
		if(r - l == 1)
			return new Pair(x[l],x[r],dist(x[l],x[r]));
		if(r - l == 2){
			double d1 = dist(x[l],x[l + 1]);
			double d2 = dist(x[l + 1],x[r]);
			double d3 = dist(x[l],x[r]);
			if(d1 <= d2 && d1 <= d3)
				return new Pair(x[l],x[l + 1],d1);
			if(d2 <= d3)
				return new Pair(x[l + 1],x[r],d2);
			else
				return new Pair(x[l],x[r],d3);
		}
		int m = (l + r) / 2;
		int f = l,g = m + 1;
		for(int i = l;i <= r;i++)
			if(y[i].p > m)
				z[g ++] = y[i];
			else z[f ++] = y[i];
		Pair best = closestPair(x,z,y,l,m);
		Pair right = closestPair(x,z,y,m + 1,r);
		if(right.dist < best.dist)
			best = right;
		MergeSort.merge(z,y,l,m,r);
		int k = l;
		for(int i = l;i <= r;i ++)
			if(Math.abs(x[m].x - y[i].x) < best.dist)
				z[k ++] = y[i];
		for(int i = l;i < k;i++){
			for(int j = i + 1;j < k && z[j].y - z[i].y < best.dist;j ++){
				double dp = dist(z[i],z[j]);
				if(dp < best.dist)
					best = new Pair(x[z[i].p],x[z[j].p],dp);
			}
		}
		return best;
	}
	public static void main(String[]args){
		String m = JOptionPane.showInputDialog(null,"Number of input points:","The nearest point problem",JOptionPane.QUESTION_MESSAGE);
		int n = Integer.parseInt(m);
		Point1 p[] = new Point1[n];
		for(int i = 0;i < n;i ++){
			String s1=JOptionPane.showInputDialog(null,"Enter the abscissa of p["+ i +"]","The nearest point problem",JOptionPane.QUESTION_MESSAGE);
			int x = Integer.parseInt(s1);
			String s2 = JOptionPane.showInputDialog(null,"Enter the ordinate of p["+ i +"]",
					"The nearest point problem",JOptionPane.QUESTION_MESSAGE);
			int y = Integer.parseInt(s2);
			p[i] = new  Point1(x,y,i);
		}
		Pair pair = cpair2(p);
		pair.print();
	}
}

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/5481568.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存