给定一个整数数组a和整数目标值target,在该数组中找出 和为目标值的两个整数,并返回对应两个数下标。
给定一个整数数组a和整数目标值target,在该数组中找出 和为目标值的两个整数,并返回对应两个数下标。 /** * 给定一个整数数组a和整数目标值target,在该数组中找出 * 和为目标值的两个整数,并返回对应两个数下标。 * @param a 数组 * @param target 整数目标值 * @return 返回数组 */ public static int[] toSum(int a[],int target){ int b[] = new int[2]; f