The API: int read4(char *buf) reads 4 characters at a time from a file.
The return value is the actual number of characters read. For example, it returns 3 if there is only 3 characters left in the file.
By using the read4 API, implement the function int read(char *buf, int n) that reads n characters from the file.
Note:
The read function will only be called once for each test case.
[分析]
有同学说这题题意不明,深有同感,如果题目明确说明read4是从file中读4个字符到buf,而要求实现的read是通过调用read4从file中读取n个字符到buf并返回实际读取的字符数就比较清楚啦
https://leetcode.com/discuss/19573/accepted-clean-java-solution
/* The read4 API is defined in the parent class Reader4.
int read4(char[] buf); */
public class Solution extends Reader4 {
/**
* @param buf Destination buffer
* @param n Maximum number of characters to read
* @return The number of characters read
*/
public int read(char[] buf, int n) {
char[] buffer = new char[4];
int readBytes = 0;
boolean eof = false;
while (readBytes < n && !eof) {
int currRead = read4(buffer);
if (currRead < 4)
eof = true;
int minLen = Math.min(currRead, n - readBytes);
for (int i = 0; i < minLen; i++) {
buf[readBytes + i] = buffer[i];
}
readBytes += minLen;
}
return readBytes;
}
}
分享到:
相关推荐
在讲解“python-leetcode题解之157-Read-N-Characters-Given-Read4.py”之前,需要了解这道题目是出自LeetCode平台,它是程序员面试过程中常见的在线编程练习题,旨在考察编程者对于编程语言,如Python的应用能力和...
该题解是使用 JavaScript 编写的,文件名为“157-read-n-characters-given-read4.js”。 这个题目要求实现一个 API 来读取一个文件,但是只能使用内置的 read4 API。这里的 read4 是一个假设的函数,它只用于简化...
在LeetCode的算法题库中,158号问题“Read N Characters Given Read4 II - Call multiple times”是一个针对文件读取操作的编程挑战。这个问题主要关注如何使用一个特殊的read4函数来高效地读取文件,同时还需要能够...
18| [4 Sum](https://leetcode.com/problems/4sum/) | [C++](./C++/4sum.cpp) [Python](./Python/4sum.py) | _O(n^3)_ | _O(1)_ | Medium || Two Pointers 26 | [Remove Duplicates from Sorted Array]...
15. Read N Characters Given Read4:一次调用 read4() 可以读取 4 个字符,编写一个函数,使其能够读取 n 个字符。 16. Read N Characters Given Read4 – Call Multiple Times:与上题类似,但是可能需要多次调用 ...
6. **157.py** - 这可能是LeetCode的157题,"Read N Characters Given Read4",涉及I/O流处理和模拟读取操作。 7. **122.py** - 可能是LeetCode的122题,"Best Time to Buy and Sell Stock II"(买卖股票的最佳时机...
16. Read N Characters Given Read4 – Call Multiple Times:多次调用Read4时如何处理字符读取。 二、数学 17. Reverse Integer:将一个整数中的数字反转。 18. Plus One:给定一个由数字组成的非负整数,将这个...