表的概念
在数据结构中,表分为线表和链表。链表与线表的本质不同就在于增删查改的效率。而这些在python中统统用列表进行模拟。 关于数据结构更多可以查看这篇博文: 执念斩长河专栏数据结构–目录
例子:用列表模拟表的增删查改操作
实验效果: 实验代码:
def out_put(lst
):
for item
in lst
:
print(item
)
if __name__
== '__main__':
alst
= []
alst
.append
(3)
print('遍历整体....')
out_put
(alst
)
alst
.append
(5)
alst
.append
(6)
lst
= alst
.index
(5)
alst
.remove
(5)
alst
.insert
(lst
,100)
print('遍历修改过后的....')
out_put
(alst
)
alst
.remove
(6)
print('删除过后再进行遍历...')
out_put
(alst
)
print('查找元素')
lst
= print(alst
[alst
.index
(100)])
转载请注明原文地址:https://ipadbbs.8miu.com/read-54386.html