标签:删除元素 oca news turn 原因 init image his line
Python中的顺序表/* This over-allocates proportional to the list size, mak ing room * for additional growth. The over-allocation is mild, b ut is * enough to give linear-time amortized behavior over a l ong * sequence of appends() in the presence of a poorly-perf orming * system realloc(). * The growth pattern is: 0, 4, 8, 16, 25, 35, 46, 58, 7 2, 88, ... */ new_allocated = (newsize >> 3) + (newsize < 9 ? 3 : 6);[/size][/font]
[font=微软雅黑][size=3] /* check for integer overflow */ if (new_allocated > PY_SIZE_MAX - newsize) { PyErr_NoMemory(); return -1; } else { new_allocated += newsize; }
链表
为什么需要链表
顺序表的构建需要预先知道数据??来申请连续的存储空间,?在进?扩充 时?需要进?数据的搬迁,所以使?起来并不是很灵活。
链表结构可以充分利?计算机内存空间,实现灵活的内存动态管理。
链表的定义
链表(Linked list)是?种常?的基础数据结构,是?种线性表,但是不像顺 序表?样连续存储数据,?是在每?个节点(数据存储单元)?存放下?个 节点的位置信息(即地址)。
单向链表
单向链表也叫单链表,是链表中最简单的?种形式,它的每个节点包含两个 域,?个信息域(元素域)和?个链接域。这个链接指向链表中的下?个节 点,?最后?个节点的链接域则指向?个空值。
表元素域elem?来存放具体的数据。 链接域next?来存放下?个节点的位置(python中的标识) 变量p指向链表的头节点(?节点)的位置,从p出发能找到表中的任意 节点。
节点实现
class SingleNode(object): """单链表的结点""" def __init__(self,item): # item存放数据元素 self.item = item # next是下?个节点的标识 self.next = None
标签:删除元素 oca news turn 原因 init image his line
原文地址:http://blog.51cto.com/13517854/2323039