Java利用Callable和Future进行并行搜索

本文介绍了一种使用Java中的Callable和Future接口实现的并行搜索算法。通过将数组分割成多个部分,并为每一部分创建一个搜索任务,这些任务被提交到线程池中并发执行。文章展示了如何使用AtomicInteger来同步地更新找到的目标元素的索引。
摘要由CSDN通过智能技术生成

Java利用Callable和Future进行并行搜索

public class Search {
	static int[] array = new int[1000000];
	/*线程数量*/
	static int Thread_num = 100;
	/*返回目标下标*/
	static AtomicInteger result = new AtomicInteger(-1);
	/*线程池*/
	static ExecutorService pool = Executors.newCachedThreadPool();
	
	/*搜索函数*/
	public static int search(int value,int begin,int end) {
		int i=0;
		for( i=begin;i<end;i++) {
				/*如果结果已经有了,就进行返回*/
			if (result.get()>=0) {
				 return result.get();
			}
			
			if (array[i]==value) {
				/*结果不能赋予也进行返回,说明其它线程已经找到了*/
				if (!result.compareAndSet(-1,i)) {
					return result.get();
				}
				return i;
			}
		}
		return -1;
	}
	
	
	/*搜索的线程*/
	public static class searchTask implements Callable<Integer>{
		int begin,end,value;
		
		public searchTask(int value,int begin,int end) {
				this.begin=begin;
				this.end=end;
				this.value=value;
		}

		@Override
		public Integer call() throws Exception {
			int re = search(value, begin, end);
			return re;
		}
		
	}

	/*利用线程池进行并行搜索*/
	public static void pSearch(int value) throws InterruptedException, ExecutionException {
		for(int i=0;i<1000000;i++) {
			array[i] = i;
		}
		
		
		
		int size = array.length/2+1;
		List<Future<Integer>> re = new ArrayList<>();
		for(int i=0;i<array.length;i+=size) {
			int end = i+size;
			if (end>=array.length) {
				end=array.length;
			}
			
			re.add(pool.submit(new searchTask(value, i, end)));
		}

		for(Future<Integer> fu:re) {
			if (fu.get()>=0) {
				System.out.println(fu.get());
			}
		}
		
		
	}
	public static void main(String[] args) throws InterruptedException, ExecutionException {
			long start = System.currentTimeMillis();
			Search search = new Search();

			search.pSearch(999999);
			System.out.println(System.currentTimeMillis()-start);
	}

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值