C++LeetCode 구현(157.Read 4 로 N 글자 읽 기)

[LeetCode]157.Read N Characters Given Read 4 는 Read 4 로 N 자 를 읽 습 니 다.
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:
  • Consider that you cannot manipulate the file directly, the file is only accesible for read4 but not for read.
  • The read function will only be called once for each test case.
  • You may assume the destination buffer array, buf, is guaranteed to have enough space for storing n characters.
  • 이 문 제 는 읽 기 4 함 수 를 주 었 습 니 다.한 파일 에서 최대 4 자 를 읽 을 수 있 습 니 다.파일 에 있 는 문자 가 4 글자 가 부족 하면 현재 남 은 문자 수 를 정확하게 되 돌려 줍 니 다.현재 최대 n 자 를 읽 을 수 있 는 함 수 를 실현 합 니 다.이 문 제 는 교체 와 재 귀 의 두 가지 해법 이 있 습 니 다.먼저 교체 하 는 방법 을 살 펴 보 겠 습 니 다.사 고 는 4 개 에 한 번 씩 읽 은 다음 에 읽 은 결 과 를 판단 하 는 것 입 니 다.만약 에 0 이 라면 이때 의 buf 가 이미 읽 혔 고 순환 에서 벗 어 나 res 와 n 중의 작은 값 으로 돌아 간 다 는 것 을 설명 합 니 다.그렇지 않 으 면 n 개의 문 자 를 다 읽 고 순환 이 끝 날 때 까지 계속 읽 고 마지막 으로 res 와 n 의 작은 값 을 되 돌려 줍 니 다.코드 는 다음 과 같 습 니 다.
    해법 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 자 읽 기 내용 을 읽 습 니 다.이전 글 을 검색 하거나 아래 글 을 계속 찾 아 보 세 요.앞으로 도 많은 응원 부탁드립니다!

    좋은 웹페이지 즐겨찾기