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
        }
    }
  • 相关阅读:
    nginx 报错 upstream timed out (110: Connection timed out)解决方案
    mysql 数据库缓存调优之解决The total number of locks exceeds the lock table size错误
    阿里云ECS主机内核调优
    安装Python3.6.x
    CentOS 下 LNMP 环境配置
    Walle代码发布系统
    Ansible 运维自动化 ( 配置管理工具 )
    Kafka消息的时间戳
    Linux内存分析
    H3C 查看路由器的硬件信息
  • 原文地址:https://www.cnblogs.com/johnnyzhao/p/12836319.html
Copyright © 2011-2022 走看看