-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_util.py
44 lines (35 loc) · 1.2 KB
/
test_util.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
from __future__ import annotations
from book.data_structures import Array
from book.data_structures import Bit
from book.data_structures import CT
from book.data_structures import Heap
from book.data_structures import Matrix
from book.data_structures import T
from util import range_of
def create_array(elements: list[T], start: int = 1) -> Array[T]:
n = len(elements)
array = Array[T](start, n + start - 1)
i = start
for e in elements:
array[i] = e
i += 1
return array
def create_matrix(elements: list[list[int]]) -> Matrix:
rows = len(elements)
cols = len(elements[0])
matrix = Matrix(rows, cols)
for row in range_of(1, to=rows):
for col in range_of(1, to=cols):
matrix[row, col] = elements[row - 1][col - 1]
return matrix
def create_heap(elements: list[CT], capacity: int = None) -> Heap[CT]:
heap = Heap[CT](1, capacity if capacity else len(elements))
heap.heap_size = len(elements)
for i in range_of(1, to=len(elements)):
heap[i] = elements[i - 1]
return heap
def binary_to_decimal(A: Array[Bit], n: int) -> int:
result = 0
for i in range_of(0, to=n - 1):
result += A[i] * 2 ** i
return result