about summary refs log tree commit diff
path: root/users/wpcarro/scratch/facebook/move-zeroes-to-end.py
blob: 1535b5a9faacf0231865a03d891a3257a8c986b3 (plain) (blame)
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
51
52
53
54
55
56
57
58
59
60
61
62
from collections import deque

def move_zeroes_to_end_quadratic(xs):
    """
    This solution is suboptimal. It runs in quadratic time, and it uses constant
    space.
    """
    i = 0
    while i < len(xs) - 1:
        if xs[i] == 0:
            j = i + 1
            while j < len(xs) and xs[j] == 0:
                j += 1
            if j >= len(xs):
                break
            xs[i], xs[j] = xs[j], xs[i]
        i += 1

def move_zeroes_to_end_linear(xs):
    """
    This solution is clever. It runs in linear time proportionate to the number
    of elements in `xs`, and has linear space proportionate to the number of
    consecutive zeroes in `xs`.
    """
    q = deque()
    for i in range(len(xs)):
        if xs[i] == 0:
            q.append(i)
        else:
            if q:
                j = q.popleft()
                xs[i], xs[j] = xs[j], xs[i]
                q.append(i)

def move_zeroes_to_end_linear_constant_space(xs):
    """
    This is the optimal solution. It runs in linear time and uses constant
    space.
    """
    i = 0
    for j in range(len(xs)):
        if xs[j] != 0:
            xs[i], xs[j] = xs[j], xs[i]
            i += 1


################################################################################
# Tests
################################################################################

xss = [
    [1, 2, 0, 3, 4, 0, 0, 5, 0],
    [0, 1, 2, 0, 3, 4],
    [0, 0],
]

f = move_zeroes_to_end_linear_constant_space

for xs in xss:
    print(xs)
    f(xs)
    print(xs)