C++LeetCode 구현(157.Read 4 로 N 글자 읽 기)
5754 단어 C++Read 4 로 N 자 읽 기LeetCode
Given a file and assume that you can only read the file using a given method read4, implement a method to read n characters.
Method read4:
The API read4 reads 4 consecutive characters from the file, then writes those characters into the buffer array buf.
The return value is the number of actual characters read.
Note that read4() has its own file pointer, much like FILE *fp in C.
Definition of read4:
Parameter: char[] buf
Returns: int
Note: buf[] is destination not source, the results from read4 will be copied to buf[]
Below is a high level example of how read4 works:
File file("abcdefghijk"); // File is "abcdefghijk", initially file pointer (fp) points to 'a'
char[] buf = new char[4]; // Create buffer with enough space to store characters
read4(buf); // read4 returns 4. Now buf = "abcd", fp points to 'e'
read4(buf); // read4 returns 4. Now buf = "efgh", fp points to 'i'
read4(buf); // read4 returns 3. Now buf = "ijk", fp points to end of file
Method read:By using the read4 method, implement the method read that reads n characters from the file and store it in the buffer array buf. Consider that you cannot manipulate the file directly.
The return value is the number of actual characters read.
Definition of read:
Parameters: char[] buf, int n
Returns: int
Note: buf[] is destination not source, you will need to write the results to buf[]
Example 1:
Input: file = "abc", n = 4
Output: 3
Explanation: After calling your read method, buf should contain "abc". We read a total of 3 characters from the file, so return 3. Note that "abc" is the file's content, not buf. buf is the destination buffer that you will have to write the results to.
Example 2:
Input: file = "abcde", n = 5
Output: 5
Explanation: After calling your read method, buf should contain "abcde". We read a total of 5 characters from the file, so return 5.
Example 3:
Input: file = "abcdABCD1234", n = 12
Output: 12
Explanation: After calling your read method, buf should contain "abcdABCD1234". We read a total of 12 characters from the file, so return 12.
Example 4:
Input: file = "leetcode", n = 5
Output: 5
Explanation: After calling your read method, buf should contain "leetc". We read a total of 5 characters from the file, so return 5.
Note:
해법 1:
// Forward declaration of the read4 API.
int read4(char *buf);
class Solution {
public:
int read(char *buf, int n) {
int res = 0;
for (int i = 0; i <= n / 4; ++i) {
int cur = read4(buf + res);
if (cur == 0) break;
res += cur;
}
return min(res, n);
}
};
다음은 재 귀적 해법 을 살 펴 보 겠 습 니 다.이것 도 어렵 지 않 습 니 다.buf 에 read 4 함 수 를 호출 한 다음 에 반환 값 t 를 판단 합 니 다.만약 에 반환 값 t 가 n 보다 크 면 n 이 4 보다 크 지 않 고 n 으로 돌아 가면 됩 니 다.만약 에 이 반환 값 t 가 4 보다 작 으 면 t 로 돌아 가면 됩 니 다.만약 에 그렇지 않 으 면 재 귀적 함수 에 4 를 추가 합 니 다.그 중에서 재 귀적 함수 의 buf 는 4 자 를 뒤로 밀어 야 합 니 다.이때 n 이 n-4 로 바 뀌 면 됩 니 다.코드 는 다음 과 같 습 니 다.해법 2:
// Forward declaration of the read4 API.
int read4(char *buf);
class Solution {
public:
int read(char *buf, int n) {
int t = read4(buf);
if (t >= n) return n;
if (t < 4) return t;
return 4 + read(&buf[4], n - 4);
}
};
Github 동기 화 주소:https://github.com/grandyang/leetcode/issues/157
유사 한 제목:
Read N Characters Given Read4 II - Call multiple times
참고 자료:
https://leetcode.com/problems/read-n-characters-given-read4/
https://leetcode.com/problems/read-n-characters-given-read4/discuss/49557/Accepted-clean-java-solution
https://leetcode.com/problems/read-n-characters-given-read4/discuss/49496/Another-accepted-Java-solution
C++구현 LeetCode(157.Read 4 로 N 자 읽 기)에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 C++구현 은 Read 4 로 N 자 읽 기 내용 을 읽 습 니 다.이전 글 을 검색 하거나 아래 글 을 계속 찾 아 보 세 요.앞으로 도 많은 응원 부탁드립니다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Visual Studio에서 파일 폴더 구분 (포함 경로 설정)Visual Studio에서 c, cpp, h, hpp 파일을 폴더로 나누고 싶었습니까? 어쩌면 대부분의 사람들이 있다고 생각합니다. 처음에 파일이 만들어지는 장소는 프로젝트 파일 등과 같은 장소에 있기 때문에 파일...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.