158. Read N Characters Given Read4 II - Call multiple times
Read N Characters Given Read4 II - Call multiple times
Solution
/* The read4 API is defined in the parent class Reader4.
int read4(char[] buf); */
public class Solution extends Reader4 {
char[] last;
int startIndex = 4;
int readCount = 4;
public int read(char[] buf, int n) {
int index = 0;
while (startIndex < readCount && index <n){
buf[index] = last[startIndex];
index ++;
startIndex ++;
}
while (index < n) {
char[] temp = new char[4];
int readCount = read4(temp);
if (readCount == 0) {
break;
}
int i = 0;
while (i < readCount) {
if (index < n) {
buf[index] = temp[i];
index++;
} else {
break;
}
i ++;
}
last = temp;
startIndex = i;
this.readCount = readCount;
}
return index;
}
}Previous157. Read N Characters Given Read4Next159. Longest Substring with At Most Two Distinct Characters
Last updated