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
        }
    }
  • 相关阅读:
    python中字典dict pop方法
    Markdown 学习资源
    Windows bat 设置代理
    Warning: Permanently added '...' (RSA) to the list of known hosts --Windows下git bash 警告处理
    subilme增加对markdown的高亮支持
    ubuntu笔记1
    Sublime Python 插件配置合集
    Excel VBA 快捷键 代码
    贩卖守望先锋账号
    如何用VS2017用C++语言写Hello world 程序?
  • 原文地址:https://www.cnblogs.com/johnnyzhao/p/12836319.html
Copyright © 2011-2022 走看看