Ai
1 Star 0 Fork 0

徐长贺/Leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
_157.java 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
Steve Sun 提交于 2018-05-16 22:20 +08:00 . refactor 157
package com.fishercoder.solutions;
/**
* 157. Read N Characters Given Read4
*
* 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.
*
* Example 1:
*
* Input: buf = "abc", n = 4
* Output: "abc"
* Explanation: The actual number of characters read is 3, which is "abc".
*
* Example 2:
*
* Input: buf = "abcde", n = 5
* Output: "abcde"
*
* Note:
* The read function will only be called once for each test case.
*
*/
public class _157 {
public static class Solution1 {
public int read(char[] buf, int n) {
int index = 0;
int next = 0;
char[] buffer = new char[4];
while (index < n && (next = read4(buffer)) != 0) {
for (int i = 0; i < next && index < n; index++, i++) {
buf[index] = buffer[i];
}
}
return index;
}
private int read4(char[] buffer) {
//this is a fake method to make Eclipse happy
return 0;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/isulong/Leetcode.git
git@gitee.com:isulong/Leetcode.git
isulong
Leetcode
Leetcode
master

搜索帮助