LeetCode Two Sum

题目描述:https://oj.leetcode.com/problems/two-sum/

题目大意:给定一个数组,一个target 数,找出数组中的两个数a,b,满足a+b=target。返回a,b的下标,且a的下标小于b的下标。


package TwoSum;

import java.util.Arrays;
public class Solution {
	class Number implements Comparable<Number>{
		int pos;
		int num;
		Number(int num,int pos){
			this.num = num;
			this.pos = pos;
		}
		@Override
		public int compareTo(Number arg0) {
			if(this.num<arg0.num) return -1;
			else 
			if(this.num>arg0.num) return 1;
			return 0;
		}
		
	}
	public int[] twoSum(int[] numbers,int target){
		Number[] num_pos = new Number[numbers.length];
		for(int i=0;i<numbers.length;i++)
			num_pos[i] = new Number(numbers[i],i);
		Arrays.sort(num_pos);
		int[] ans = new int[2];
		for(int i=0;i<num_pos.length;i++){
			int temp = target - num_pos[i].num;
			Number tar = new Number(temp,-1);
			int index = Arrays.binarySearch(num_pos,i+1,num_pos.length,tar);
			if(index>=0){
				ans[0] = num_pos[i].pos+1;
				ans[1] = num_pos[index].pos+1;
				if(ans[0]>ans[1]){
					int t = ans[0];
					ans[0] = ans[1];
					ans[1] = t;
				}
			}
		}
		return ans;
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值