Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
courses:cs211:winter2012:journals:ian:chapter5 [2012/03/14 03:59] – 5.3 5.4 sturdyi | courses:cs211:winter2012:journals:ian:chapter5 [2012/03/14 04:08] (current) – sturdyi | ||
---|---|---|---|
Line 26: | Line 26: | ||
* This chapter seems really focused on improving on O(n^2) runtimes. Having seen the difference between O(n log n) and O(n^2) in practice (in Economics I have Ns ranging above 10e7), I am not complaining. But why the fixation on polynomial time as the standard for efficiency, given how often brute force achieves it and how often we attempt to improve on it? | * This chapter seems really focused on improving on O(n^2) runtimes. Having seen the difference between O(n log n) and O(n^2) in practice (in Economics I have Ns ranging above 10e7), I am not complaining. But why the fixation on polynomial time as the standard for efficiency, given how often brute force achieves it and how often we attempt to improve on it? | ||
* No complaints. | * No complaints. | ||
+ | |||
+ | ====== 5.5 Integer Multiplication ====== | ||
+ | |||
+ | * The conventional multiply-and-carry multiplication algorithm is O(n^2) for multiplying two n digit numbers (n nx1 multiplications, | ||
+ | * No insights. | ||
+ | * No questions. | ||
+ | * No complaints. I appreciated their giving the derivation of the second identity. | ||
+ | |||