[python官方文件]5資料結構
#這只是一個簡要的個人回顧,慎看
list操作:
len popappend
insertextend
+[:]
delremove
clear indexcount
sortcopy
reverse
5.1.1 stack appendpop
5.1.2 not suitable for queue --->collections.deque(涉及到py中list的實現原理
一個list物件,其指標是由順序表組成,每個指標指向其物件,pop,append操作O(1),
insert,remove O(N))
5.1.3列表推導式
[x**2 for x in range(5)]
類似map()函式:map(f(x),[],[]...)
eg: map(lambda x,y:x*y,[1,2],[3,4])對應 [x*y for x,y in zip([1,2],[3,4])]
這裡由涉及到zip()函式,其實際就是順序使x,y等於zip中每個list的第1,2...個值
5.1.4巢狀的列表推導式
實現一個矩陣的轉置
[[ma[i] for ma in matrix] for i in range(len(matrix[0]))]
5.2 del語句:del可以用來del切片
5.3元組和序列:元組內的元素是不可變的,除了其內的可變元素本身可變
5.4集合:沒有重複元素,可以進行集合運算
5.5字典:key-value對
5.6迴圈技巧for k,v in dict.items():for i in dict.keys():for i in dict.values()
相關文章
- Oracle 官方文件 結構說明Oracle
- Python資料結構Python資料結構
- docker官方文件翻譯5Docker
- python資料結構setPython資料結構
- Python資料結構:字典Python資料結構
- (python)資料結構—集合Python資料結構
- (python)資料結構—字串Python資料結構字串
- (python)資料結構——列表Python資料結構
- 資料結構(python版)資料結構Python
- Python基本資料結構Python資料結構
- Redis 5大資料結構Redis大資料資料結構
- Python 官方文件:入門教程Python
- 【Python】官方文件中文版Python
- python資料結構之棧Python資料結構
- Python常用資料結構(列表)Python資料結構
- 資料結構5_遞迴資料結構遞迴
- Serilog文件翻譯系列(四) - 結構化資料
- python演算法與資料結構-什麼是資料結構Python演算法資料結構
- 通讀Python官方文件之cgitbPythonGit
- 通讀Python官方文件之ThreadingPythonthread
- Python基礎之:Python的資料結構Python資料結構
- python資料結構元組tuplePython資料結構
- Python:內建資料結構_字串Python資料結構字串
- python字典和結構化資料Python
- Python中資料結構與特性Python資料結構
- 5分鐘瞭解資料結構資料結構
- 來了!Python官方文件中文版Python
- python資料結構——連結串列(無序列表)Python資料結構
- python資料結構與演算法Python資料結構演算法
- PHPer 淺談 Python 的資料結構PHPPython資料結構
- Python內建資料結構--bytes、bytearrayPython資料結構
- 列舉python常用的資料結構Python資料結構
- Python 資料結構視訊教程三Python資料結構
- 資料結構與演算法-5 棧資料結構演算法
- 結構化資料、半結構化資料和非結構化資料
- HTML文件結構HTML
- 資料結構-雙向連結串列(Python實現)資料結構Python
- python演算法與資料結構-資料結構中常用樹的介紹(45)Python演算法資料結構
- python演算法與資料結構-演算法和資料結構介紹(31)Python演算法資料結構