Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
eher: n + 10n = O(n)Beispiel: Bei (2) erhalte ich n + 5n^2 oder n + n^2?
Also n + 10n = O(n) wäre die Lösung für die ganze Funktion?eher: n + 10n = O(n)
doC(n) = O(n)
jedoch doC(5) = O(5) = O(1)
O(5) entspricht O(1) das bedeutet eine konstante Laufzeit.Warum wird doC(5) zu O(1) und nicht O(5)?