C++LeetCode 구현(158.Read 4 로 N 글자 의 2-다 중 호출 읽 기)

[LeetCode]158.Read N Characters Given Read 4 II-Call multiple times N 글자 의 두 번 째-여러 번 호출 읽 기 4 로 읽 기
Given a file and assume that you can only read the file using a given method read4, implement a method read to read n characters. Your method read may be called multiple times.
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:
File file("abc");
Solution sol;
// Assume buf is allocated and guaranteed to have enough space for storing all characters from the file.
sol.read(buf, 1); // After calling your read method, buf should contain "a". We read a total of 1 character from the file, so return 1.
sol.read(buf, 2); // Now buf should contain "bc". We read a total of 2 characters from the file, so return 2.
sol.read(buf, 1); // We have reached the end of file, no more characters can be read. So return 0.
Example 2:
File file("abc");
Solution sol;
sol.read(buf, 4); // After calling your read method, buf should contain "abc". We read a total of 3 characters from the file, so return 3.
sol.read(buf, 1); // We have reached the end of file, no more characters can be read. So return 0.
Note:
  • Consider that you cannot manipulate the file directly, the file is only accesible for read4 but not for read.
  • The read function may be called multiple times.
  • Please remember to RESET your class variables declared in Solution, as static/class variables are persisted across multiple test cases. Please see  here  for more details.
  • You may assume the destination buffer array, buf, is guaranteed to have enough space for storing n characters.
  • It is guaranteed that in a given test case the same buffer buf is called by read.
  • 이 문 제 는 이전 문제 입 니 다.  Read N Characters Given Read4  의 확장,그 문 제 는 read 함수 가 한 번 만 호출 할 수 있다 고 말 했 는데 이 문 제 는 read 함수 가 여러 번 호출 할 수 있다 고 말 하면 난이도 가 증가 합 니 다.문 제 를 더욱 간단 하고 직관 적 으로 설명 하기 위해 간단 한 예 를 들 어 보 세 요.예 를 들 어:
    buf="ab",[read(1),read(2)],반환["a","b"]
    그럼 첫 호출. read(1) 그 다음 에 buf 에서 첫 번 째 문자 a 를 읽 은 다음 에 또 하 나 를 호출 했 습 니 다. read(2),두 문 자 를 꺼 내 려 고 했 지만 buf 에 b 만 남 았 기 때문에 꺼 낸 결 과 는 b 입 니 다.예 를 하나 더 보 겠 습 니 다.
    buf="a",[read(0),read(1),read(2)],반환[","a","]
    일차 호출 read(0),어떤 문자 도 취하 지 않 고 비 워 두 번 째 호출 read(1),한 문 자 를 가 져 옵 니 다.buf 에 한 글자 만 있 습 니 다.a 로 꺼 낸 다음 호출 합 니 다. read(2),두 문 자 를 꺼 내 려 고 했 지만 buf 에 문자 가 없어 서 비어 있 습 니 다.
    그런데 이 문 제 는 제 가 잘 모 르 는 부분 은 분명 함수 가 int 유형 으로 되 돌아 간 것 입 니 다.왜 OJ 의 output 는 모두 vector류 입 니까?그리고 저 는 인터넷 에서 OJ 를 통과 할 수 있 는 두 가지 해법 을 찾 았 습 니 다.대충 보 았 지만 수박 겉 핥 기 입 니 다.두 개의 변 량 readPos 와 writePos 로 읽 고 쓸 수 있 는 위 치 를 기록 한 것 같 습 니 다.i 는 0 에서 n 까지 순환 하기 시 작 했 습 니 다.이 때 읽 기와 쓰기 의 위치 가 같다 면 read 4 함 수 를 호출 하여 결 과 를 writePos 에 부여 하고 readPos 를 0 으로 설정 합 니 다.writePos 가 0 이면 buf 에 아무것도 없다 는 뜻 입 니 다.현재 좌표 i 로 돌아 갑 니 다.그리고 내 장 된 buff 변수의 readPos 위치 로 입력 문자열 buf 의 i 위 치 를 덮어 씁 니 다.옮 겨 다 니 기 가 완료 되면 n 으로 돌아 갑 니 다.코드 는 다음 과 같 습 니 다.
    해법 1:
    
    // Forward declaration of the read4 API.
    int read4(char *buf);
    
    class Solution {
    public:
        int read(char *buf, int n) {
            for (int i = 0; i < n; ++i) {
                if (readPos == writePos) {
                    writePos = read4(buff);
                    readPos = 0;
                    if (writePos == 0) return i;
                }
                buf[i] = buff[readPos++];
            }
            return n;
        }
    private:
        int readPos = 0, writePos = 0;
        char buff[4];
    };
    아래 의 이런 방법 은 위의 방법 과 대체적으로 같 고 해법 을 약간 바 꾸 어 더욱 간결 해 보인다.
    해법 2:
    
    // Forward declaration of the read4 API.
    int read4(char *buf);
    
    class Solution {
    public:
        int read(char *buf, int n) {
            int i = 0;
            while (i < n && (readPos < writePos || (readPos = 0) < (writePos = read4(buff))))
                buf[i++] = buff[readPos++];
            return i;
        }
        char buff[4];
        int readPos = 0, writePos = 0;
    };
    Github 동기 화 주소:
    https://github.com/grandyang/leetcode/issues/158
    유사 한 제목:
    Read N Characters Given Read4
    참고 자료:
    https://leetcode.com/problems/read-n-characters-given-read4-ii-call-multiple-times/
    https://leetcode.com/problems/read-n-characters-given-read4-ii-call-multiple-times/discuss/49598/A-simple-Java-code
    https://leetcode.com/problems/read-n-characters-given-read4-ii-call-multiple-times/discuss/49607/The-missing-clarification-you-wish-the-question-provided
    C++구현 LeetCode(158.Read 4 로 N 글자 의 2-다 중 호출)에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 C++구현 은 Read 4 로 N 글자 의 2-다 중 호출 내용 을 읽 습 니 다.이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 도 많은 응원 부 탁 드 리 겠 습 니 다!

    좋은 웹페이지 즐겨찾기