[LeetCode] 158. Read N Characters Given Read4 II - Call multiple times #158
Comments
我觉得这个solution不太好理解, 在网上看到一个solution, 比较好理解, java /* The read4 API is defined in the parent class Reader4. public class Solution extends Reader4 { /**
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Given a file and assume that you can only read the file using a given method
read4
, implement a methodread
to read n characters. Your methodread
may be called multiple times.Method read4:
The API
read4
reads 4 consecutive characters from the file, then writes those characters into the buffer arraybuf
.The return value is the number of actual characters read.
Note that
read4()
has its own file pointer, much likeFILE *fp
in C.Definition of read4:
Below is a high level example of how
read4
works:Method read:
By using the
read4
method, implement the methodread
that reads n characters from the file and store it in the buffer arraybuf
. Consider that you cannot manipulate the file directly.The return value is the number of actual characters read.
Definition of read:
Example 1:
Example 2:
Note:
read4
but not forread
.read
function may be called multiple times.buf
, is guaranteed to have enough space for storing n characters.buf
is called byread
.这道题是之前那道 Read N Characters Given Read4 的拓展,那道题说 read 函数只能调用一次,而这道题说 read 函数可以调用多次,那么难度就增加了,为了更简单直观的说明问题,举个简单的例子吧,比如:
buf = "ab", [read(1),read(2)],返回 ["a","b"]
那么第一次调用 read(1) 后,从 buf 中读出一个字符,就是第一个字符a,然后又调用了一个 read(2),想取出两个字符,但是 buf 中只剩一个b了,所以就把取出的结果就是b。再来看一个例子:
buf = "a", [read(0),read(1),read(2)],返回 ["","a",""]
第一次调用 read(0),不取任何字符,返回空,第二次调用 read(1),取一个字符,buf 中只有一个字符,取出为a,然后再调用 read(2),想取出两个字符,但是 buf 中没有字符了,所以取出为空。
但是这道题我不太懂的地方是明明函数返回的是 int 类型啊,为啥 OJ 的 output 都是 vector 类的,然后我就在网上找了下面两种能通过OJ的解法,大概看了看,也是看的个一知半解,貌似是用两个变量 readPos 和 writePos 来记录读取和写的位置,i从0到n开始循环,如果此时读和写的位置相同,那么调用 read4 函数,将结果赋给 writePos,把 readPos 置零,如果 writePos 为零的话,说明 buf 中没有东西了,返回当前的坐标i。然后用内置的 buff 变量的 readPos 位置覆盖输入字符串 buf 的i位置,如果完成遍历,返回n,参见代码如下:
解法一:
下面这种方法和上面的方法基本相同,稍稍改变了些解法,使得看起来更加简洁一些:
解法二:
Github 同步地址:
#158
类似题目:
Read N Characters Given Read4
参考资料:
https://leetcode.com/problems/read-n-characters-given-read4-ii-call-multiple-times/
https://leetcode.com/problems/read-n-characters-given-read4-ii-call-multiple-times/discuss/49598/A-simple-Java-code
https://leetcode.com/problems/read-n-characters-given-read4-ii-call-multiple-times/discuss/49607/The-missing-clarification-you-wish-the-question-provided
LeetCode All in One 题目讲解汇总(持续更新中...)
The text was updated successfully, but these errors were encountered: