eternaloptimist
Well-Known Member
- Joined
- Jul 10, 2013
- Messages
- 175
Hi all, I have 2 questions that I'd like to ask.
1. If I had a fibonacci function (assuming I am correct = O(2N)). If I used memoization, will that change anything? The function will be way faster but is it still O(2N)?
2. I have been playing around with multiprocessing (Python) and I am kinda wowed by it all. My question is, have any of you used this in the real world? i.e Parallel Computing? Is figuring out the parallelizable parts of your code always obvious?
Thanks!
1. If I had a fibonacci function (assuming I am correct = O(2N)). If I used memoization, will that change anything? The function will be way faster but is it still O(2N)?
2. I have been playing around with multiprocessing (Python) and I am kinda wowed by it all. My question is, have any of you used this in the real world? i.e Parallel Computing? Is figuring out the parallelizable parts of your code always obvious?
Thanks!