설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ANSWERS.md 645B

Task 1 - Laufzeitanalyse

Bei unseren Tests au der Labshell bekamen wir folgende Werte:

cargo run --release -- 42 12 timings
[...]
(Duration 0s / 0ms / 239us)
cargo run --release -- 42 123 timings
[...]
(Duration 0s / 8ms / 8027us)
cargo run --release -- 42 1234 timings
[...]
(Duration 0s / 95ms / 95245us)
cargo run --release -- 43 12345 timings
[...]
(Duration 0s / 484ms / 484376us)
cargo run --release -- 43 123456 timings
[...]
(Duration 13s / 13711ms / 13711554us)

Diese Messwerte lassen auf ein exponentielles Wachstum der Laufzeit pro hinzukommender Stelle schließen.