How can i copy a dictionary of lists and what is its complexity? My dictionary is like this:
myDict = {'a':list1, 'b':list2, ...}
|
How can i copy a dictionary of lists and what is its complexity? My dictionary is like this:
|
||||
| show 2 more comments |
|
The simplest way to copy any complex data structure is The complexity should obviously be O(NM), where N is the number of Let's say you have a If the But the So, the total time is O(N + NM) = O(NM). And, given that you have NM objects and explicitly want to copy all of them, there's really no way you could beat that. Of course it's conceivable that you could get an order of magnitude improvement by stripping down the extraneous parts of what |
|||||
|
|
|||
|
|
|
You can use the internal dictionary method called example:
if you change and the complexity is near |
|||||||||||||||||
|
from copy import deepcopy– l4mpi Jan 7 at 21:29