gpt4 book ai didi

java - 遍历一个大数组

转载 作者:行者123 更新时间:2023-12-01 09:30:19 26 4
gpt4 key购买 nike

数组有元素 (1,2,2,1,1)。我必须找到子数组中不同元素的数量应等于给定数组中不同元素的数量,即数组中不同元素的数量为2(1 和 2)。

所有可能的子数组为 [1,2] 、 [1,3] 、 [1,4] 、 [1,5] 、 [2,4] 、 [2,5] 、 [3,4] 、 [3,5]

不同意味着没有不同的元素,它 2 {1,2,2} 有 2 个不同的元素。在这个问题中 1,4 并不意味着我们包含第一个元素和第四个元素,它意味着我们的子数组从 1 开始到 4 结束因此子数组是 [1,2,2,1],它有 2 个不同的元素,并且它满足整个数组有 2 个不同的元素。

que 的问题是我得到了 2 个 lacs 的数组大小的测试用例,并且我必须在 1 秒内获得输出,并且每次我得到的时间限制都会超出。

看到答案后,我必须使用缓冲区读取器(而不是扫描仪{由于性能问题})和 HashMap 。

首先,我使用了扫描仪和缓冲区读取器,两者都在 2 分 17 秒内给出了输出(对于 2 个 lac 输入)。那么为什么需要使用缓冲区读取器(使用扫描器减少了代码的长度)。

其次,我在网站上测试了这两个代码,这两个代码都在 1 秒内给出了输出,而在我的本地计算机上则需要 2 分 17 秒。我不明白为什么会有这么大的差异。

三、这段代码的含义是什么: 最终 int mod = (int)1e9+7;(虽然我在使用大量时见过很多次)

第四,下面的代码与缓冲读取器一起使用有什么用。

我是java新手,所以请给出简单的答案,对于这么长的帖子表示抱歉

class InputReader
{
private InputStream stream;
private byte[] buf = new byte[1024];
private int curChar;
private int numChars;
private SpaceCharFilter filter;

public InputReader(InputStream stream)
{
this.stream = stream;
}

public int read()
{
if (numChars == -1)
throw new InputMismatchException();
if (curChar >= numChars)
{
curChar = 0;
try
{
numChars = stream.read(buf);
} catch (IOException e)
{
throw new InputMismatchException();
}
if (numChars <= 0)
return -1;
}
return buf[curChar++];
}

public int readInt()
{
int c = read();
while (isSpaceChar(c))
c = read();
int sgn = 1;
if (c == '-')
{
sgn = -1;
c = read();
}
int res = 0;
do
{
if (c < '0' || c > '9')
throw new InputMismatchException();
res *= 10;
res += c - '0';
c = read();
} while (!isSpaceChar(c));
return res * sgn;
}

public String readString()
{
int c = read();
while (isSpaceChar(c))
c = read();
StringBuilder res = new StringBuilder();
do
{
res.appendCodePoint(c);
c = read();
} while (!isSpaceChar(c));
return res.toString();
}
public double readDouble() {
int c = read();
while (isSpaceChar(c))
c = read();
int sgn = 1;
if (c == '-') {
sgn = -1;
c = read();
}
double res = 0;
while (!isSpaceChar(c) && c != '.') {
if (c == 'e' || c == 'E')
return res * Math.pow(10, readInt());
if (c < '0' || c > '9')
throw new InputMismatchException();
res *= 10;
res += c - '0';
c = read();
}
if (c == '.') {
c = read();
double m = 1;
while (!isSpaceChar(c)) {
if (c == 'e' || c == 'E')
return res * Math.pow(10, readInt());
if (c < '0' || c > '9')
throw new InputMismatchException();
m /= 10;
res += (c - '0') * m;
c = read();
}
}
return res * sgn;
}
public long readLong() {
int c = read();
while (isSpaceChar(c))
c = read();
int sgn = 1;
if (c == '-') {
sgn = -1;
c = read();
}
long res = 0;
do {
if (c < '0' || c > '9')
throw new InputMismatchException();
res *= 10;
res += c - '0';
c = read();
} while (!isSpaceChar(c));
return res * sgn;
}
public boolean isSpaceChar(int c)
{
if (filter != null)
return filter.isSpaceChar(c);
return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
}

public String next()
{
return readString();
}

public interface SpaceCharFilter
{
public boolean isSpaceChar(int ch);
}
}

class OutputWriter
{
private PrintWriter writer;

public OutputWriter(OutputStream outputStream)
{
writer = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream)));
}

public OutputWriter(Writer writer)
{
this.writer = new PrintWriter(writer);
}

public void print(Object... objects)
{
for (int i = 0; i < objects.length; i++)
{
if (i != 0)
writer.print(' ');
writer.print(objects[i]);
}
}

public void printLine(Object... objects)
{
print(objects);
writer.println();
}

public void close()
{
writer.close();
}

public void flush()
{
writer.flush();
}
}

最佳答案

回答您的第四个查询:该代码比使用普通的 Scanner 类更快。因此,您可以在编码竞赛中使用它。我在大约 55 MB 的文本文件“test.txt”上使用了以下代码。

package so;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Scanner;

public class UseIR {
public static void main(String[] args) throws IOException {

//checked using the class provided 'InputReader'
InputReader ob=new InputReader(new FileInputStream(new File("src\\so\\test.txt")));
long str=0;
StringBuilder sb=new StringBuilder();
long curTime=System.currentTimeMillis();
while((str=ob.read())!=-1){
sb.append(((char)str));
}
System.out.println("done "+(System.currentTimeMillis()-curTime));

//checked using the Scanner class

curTime=System.currentTimeMillis();
Scanner s=new Scanner(new File("src\\so\\test.txt"));
sb=new StringBuilder();
while(s.hasNext()){
sb.append(s.next());
}
System.out.println("done "+(System.currentTimeMillis()-curTime));
}
}

具有以下输出:

done 447
done 2061

希望有帮助:)

关于java - 遍历一个大数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39483019/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com