Redian新闻
>
苹果首次开卖翻新iphone, 6s $449
avatar
苹果首次开卖翻新iphone, 6s $449# PDA - 掌中宝
b*5
1
first available server == first missing positive
public int firstMissingPositive(int[] A) {
if (A.length == 0) return 1;

int i = 0;
while (i < A.length) {
if (A[i] > A.length || A[i] <= 0)
i++;
else if (A[i] != i+1 && A[A[i]-1] != A[i]) {
int tmp = A[A[i]-1];
A[A[i]-1] = A[i];
A[i] = tmp;
}
else
i++;
}

for (int j = 0; j < A.length; j++) {
if (A[j] != j+1) {
return j+1;
}
}
return A.length+1;
}
avatar
b*5
3
然后还有一个FileLineIterator
class FileLineIterator {
String nextLine;
public FileLineIterator(String fileName) {
try {
File file = new File(fileName);
BufferedReader br = new BufferedReader(new FileReader(file));
this.nextLine = null;
} catch {
throw new RuntimeException("...");
}
}
public boolean hasNext() {
if (nextLine == null) {
nextLine = br.readLine();
}
return nextLine!=null;
}
public String get() {
String result = nextLine;
nextLine = null;
return result;
}
}
avatar
f*l
5
以前也买过吧?
avatar
A7
6
官网以前从来没卖过翻新iphone,一般就是ipad ipod mac

【在 f****l 的大作中提到】
: 以前也买过吧?
avatar
e*n
8
鬼,我当时就从苹果网买了iPhone 1代的翻新机。

【在 A7 的大作中提到】
: 官网以前从来没卖过翻新iphone,一般就是ipad ipod mac
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。