Where can I find the time and space complexity of the built-in sequence types in Python

前端 未结 3 1917
走了就别回头了
走了就别回头了 2021-02-12 18:15

I\'ve been unable to find a source for this information, short of looking through the Python source code myself to determine how the objects work. Does anyone know where I could

3条回答
  •  说谎
    说谎 (楼主)
    2021-02-12 18:41

    If your asking what I think your asking, you can find them Here... page 476 and on.

    It's written around optimization techniques for Python; It's mostly Big-O notation of time efficiencies not much memory.

提交回复
热议问题