17 lines
310 B
Markdown
17 lines
310 B
Markdown
Answer in plain text:
|
|
|
|
If the users table doubles in size, what happens to execution time?
|
|
|
|
Write the runtime formula using:
|
|
|
|
n = number of rows
|
|
m = average username length
|
|
|
|
if the number of user double a size
|
|
the it mutiple by two the number of execution
|
|
|
|
$$
|
|
T(2n,m) = 2 \times n \times m
|
|
$$
|
|
|
|
Growth is linear |