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 may be called multiple times.
一刷
題解:與157不同的是,函數(shù)可以被多次調(diào)用夺克,比如read(buf, 1), 但是我們訪問read4,如果函數(shù)沒有結(jié)束狡门,一定讀得了4個(gè)char,但是只返回一個(gè)尝偎。
buffPtr: buffer pointer
buffCnt: buffer counter, 保存一次調(diào)用read4讀到的字符數(shù)目
直到buffPtr reach buffCnt的時(shí)候肤寝,置為0,準(zhǔn)備調(diào)用下一次read4
/* 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
*/
private int buffPtr = 0;//buffPointer
private int buffCnt = 0;//buffCounter
private char[] buff = new char[4];
public int read(char[] buf, int n) {
int ptr = 0;
while(ptr<n){
if(buffPtr == 0){
buffCnt = read4(buff);
}
if(buffCnt == 0) break;
while(ptr<n && buffPtr < buffCnt){//if buffPtr reach the buffCnt, set to zero and ready
buf[ptr] = buff[buffPtr];
ptr++;
buffPtr++;
}
if(buffPtr>=buffCnt) buffPtr = 0;
}
return ptr;
}
}