Search code examples
pythonperformancecomplexity-theorybig-osequences

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


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 find this online?


Solution

  • Checkout the TimeComplexity page on the py dot org wiki. It covers set/dicts/lists/etc at least as far as time complexity goes.