Prevent memory error in itertools.permutation

后端 未结 2 1049
说谎
说谎 2020-12-01 15:16

Firstly I would like to mention that i have a 3 gb ram.

I am working on an algorithm that is exponential in time on the nodes so for it I have in the code

2条回答
  •  北海茫月
    2020-12-01 15:48

    It won't work. Looping over an iterator won't work either. You see, if the code in the for-loop takes 1 microsecond to run, it will take 2.587×10^34 years to run completely. (See http://www.wolframalpha.com/input/?i=40%21+microseconds+in+years)

提交回复
热议问题