-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathread-n-characters-given-read4-2.py
50 lines (47 loc) · 1.67 KB
/
read-n-characters-given-read4-2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
"""
The read4 API is already defined for you.
@param buf, a list of characters
@return an integer
def read4(buf):
# Below is an example of how the read4 API can be called.
file = File("abcdefghijk") # File is "abcdefghijk", initially file pointer (fp) points to 'a'
buf = [' '] * 4 # Create buffer with enough space to store characters
read4(buf) # read4 returns 4. Now buf = ['a','b','c','d'], fp points to 'e'
read4(buf) # read4 returns 4. Now buf = ['e','f','g','h'], fp points to 'i'
read4(buf) # read4 returns 3. Now buf = ['i','j','k',...], fp points to end of file
"""
class Solution(object):
def __init__(self):
self.bf = []
self.old_size = 0
def read(self, buf, n):
"""
:type buf: Destination buffer (List[str])
:type n: Number of characters to read (int)
:rtype: The number of actual characters read (int)
"""
nn = 0
while nn < n:
if self.old_size > 0:
if self.old_size >= n:
buf[nn:n] = self.bf[:n-nn]
self.bf = self.bf[n:]
self.old_size = self.old_size - n
return n
else:
buf[nn:nn+self.old_size] = self.bf
nn += self.old_size
self.bf = []
self.old_size = 0
bf = [' '] * 4
n4 = read4(bf)
if nn + n4 > n:
buf[nn:n] = bf[:n-nn]
self.bf = bf[n-nn:]
self.old_size = nn+n4-n
return n
buf[nn:nn+n4] = bf
nn += n4
if n4 < 4:
return nn
return nn