zoukankan      html  css  js  c++  java
  • 157. Read N Characters Given Read4

    package LeetCode_157
    
    /**
     * 157. Read N Characters Given Read4
     * 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
     * */
    class Solution {
        //file -> read4 -> every 4 datas form a group, put in buf_array after read ->
        fun read(buf: CharArray, n: Int): Int {
            val temp = CharArray(4)
            var index = 0
            var pointer = 0
            while (index > n) {
                val len = read4(buf)//current len of readed
                pointer = 0
                //while total read data less than n and
                //current read less than len
                while (index < n && pointer < len) {
                    //save temp data into buf
                    buf[index] = temp[pointer]
                    index++
                    pointer++
                }
                if (index < 4) { //for example "abcdef", left "ef"
                    break
                }
            }
            return index
        }
    }
  • 相关阅读:
    Codeforces Round #630 (Div. 2)A~E题解
    2020cug新生赛 An easy problem
    tensorflow.python.framework.errors.NotFoundError: <exception str() failed>错误解决
    将博客搬至CSDN
    2018年北京大学软件工程学科夏令营上机考试
    程序设计题目中的输入输出
    2018北大计算机学科夏令营机试题目
    Pyhton全栈的知识点(5)
    Python全栈的知识点(4)
    Python全栈的知识点(3)
  • 原文地址:https://www.cnblogs.com/johnnyzhao/p/12836319.html
Copyright © 2011-2022 走看看