12

我想知道 len() 是如何工作的。

每次我调用 len() 时它是否从列表的开始计数到结尾,或者,由于列表也是一个类,所以 len() 是否只在列表对象中返回一个记录列表长度的变量?

另外,我希望有人能告诉我在哪里可以找到“len()”、“map()”等内置函数的源代码。

4

2 回答 2

18

在此处下载 Python 2.7 源代码:http: //www.python.org/getit/releases/2.7.4/

list./Include/listobject.h和中实现./Objects/listobject.c

typedef struct {
    PyObject_VAR_HEAD
    /* Vector of pointers to list elements.  list[0] is ob_item[0], etc. */
    PyObject **ob_item;

    /* ob_item contains space for 'allocated' elements.  The number
     * currently in use is ob_size.
     * Invariants:
     *     0 <= ob_size <= allocated
     *     len(list) == ob_size
     *     ob_item == NULL implies ob_size == allocated == 0
     * list.sort() temporarily sets allocated to -1 to detect mutations.
     *
     * Items must normally not be NULL, except during construction when
     * the list is not yet visible outside the function that builds it.
     */
    Py_ssize_t allocated;
} PyListObject;

list.__len__()只是咨询ob_size,这是一部分PyObject_VAR_HEAD。这len()对列表进行了恒定时间操作。

于 2013-04-27T07:21:07.283 回答
2

好吧,你可以在这里找到内置函数的文档。

list数据类型跟踪它所持有的元素数量,是len(list)一个 O(1) 操作。


源码可以在下载页面找到Python的源码。

于 2013-04-27T07:19:49.270 回答