Yahoo Clever wird am 4. Mai 2021 (Eastern Time, Zeitzone US-Ostküste) eingestellt. Ab dem 20. April 2021 (Eastern Time) ist die Website von Yahoo Clever nur noch im reinen Lesemodus verfügbar. Andere Yahoo Produkte oder Dienste oder Ihr Yahoo Account sind von diesen Änderungen nicht betroffen. Auf dieser Hilfeseite finden Sie weitere Informationen zur Einstellung von Yahoo Clever und dazu, wie Sie Ihre Daten herunterladen.
Proper way to "say" Big-O notation?
What is the proper way to convey an algorithm complexity in Big-O notation in speech? Saying "the total number of operations is big oh of N log N" sounds strange, but the more pleasant "the total number of operations is proportional to N log N" is technically incorrect. What's generally accepted?
2 Antworten
- JamesLv 7vor 1 JahrzehntBeste Antwort
You could say that it is limited or bounded by a factor N log N, rather than proportional. I've read tons of white papers that refer to performance of algorithms but for the life of me I can't remember how they're worded.
- ChuckLv 6vor 1 Jahrzehnt
I think the term came from an expression like "on the order of ..."
It is not a precise reference to speed, but describes roughly how the execution time will increase with increasing data size.
Quelle(n): Engineer