博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java two sum,TwoSum.java
阅读量:7026 次
发布时间:2019-06-28

本文共 1666 字,大约阅读时间需要 5 分钟。

import java.util.Arrays;

import java.util.Comparator;

/**

* Given an array of integers, find two numbers such that they add up to a

* specific target number.

*

* The function twoSum should return indices of the two numbers such that they

* add up to the target, where index1 must be less than index2. Please note that

* your returned answers (both index1 and index2) are not zero-based.

*

* You may assume that each input would have exactly one solution.

*

* Input: numbers={2, 7, 11, 15}, target=9 Output: index1=1, index2=2

*/

public class TwoSum {

public class Num {

private int value;

private int index;

public Num(int value, int index) {

super();

this.value = value;

this.index = index;

}

public int getIndex() {

return index;

}

public void setIndex(int index) {

this.index = index;

}

public int getValue() {

return value;

}

public void setValue(int value) {

this.value = value;

}

}

public int[] twoSum(int[] numbers, int target) {

Num[] newArray = new Num[numbers.length];

for (int i = 0; i < numbers.length; i++) {

newArray[i] = new Num(numbers[i], i);

}

Arrays.sort(newArray, new Comparator() {

public int compare(Num n1, Num n2) {

if (n1.getValue() == n2.getValue())

return 0;

if (n1.getValue() > n2.getValue())

return 1;

return -1;

}

});

int[] result = new int[2];

int i = 0, j = numbers.length - 1;

while (i < j) {

int tmp = newArray[i].getValue() + newArray[j].getValue();

if (tmp == target) {

result[0] = Math.min(newArray[i].getIndex() + 1,

newArray[j].getIndex() + 1);

result[1] = Math.max(newArray[i].getIndex() + 1,

newArray[j].getIndex() + 1);

break;

} else if (tmp > target) {

j--;

} else {

i++;

}

}

return result;

}

}

一键复制

编辑

Web IDE

原始数据

按行查看

历史

转载地址:http://qksxl.baihongyu.com/

你可能感兴趣的文章
WebLogic中的一些基本概念
查看>>
一篇完全不正确的网络流总结大杂烩
查看>>
多项式&生成函数(~~乱讲~~)
查看>>
UIView-图层方法
查看>>
struts2标签库
查看>>
查找表中多余的重复记录(多个字段)
查看>>
ES6学习之Babel的正确安装姿势
查看>>
crossplatform---Nodejs in Visual Studio Code 07.学习Oracle
查看>>
BZOJ3997 [TJOI2015]组合数学
查看>>
字符串的输入输出处理
查看>>
C# WinForm 禁止最大化、最小化、双击标题栏、双击图标等操作
查看>>
xtarbackup恢复
查看>>
用SignalR 2.0开发客服系统[系列3:实现点对点通讯]
查看>>
glance rabbit
查看>>
JVM——Java虚拟机架构
查看>>
如何解决bib的一些问题
查看>>
适应手机端的jQuery图片滑块动画
查看>>
笔记本电池死而复生
查看>>
LINQ 图解
查看>>
日期和时间字符串格式化
查看>>