国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

Python數(shù)據(jù)結(jié)構(gòu)之Array用法實例

2019-11-25 18:09:14
字體:
供稿:網(wǎng)友

本文實例講述了python數(shù)據(jù)結(jié)構(gòu)之Array用法,分享給大家供大家參考。具體方法如下:

import ctypes  class Array:   def __init__(self, size):     assert size > 0, "Array size must be > 0 "     self._size = size     pyArrayType = ctypes.py_object * size     self._elements = pyArrayType()     self.clear(None)    def clear(self, value):      for index in range(len(self)):        self._elements[index] = value    def __len__(self):     return self._size    def __getitem__(self, index):     assert index >= 0 and index < len(self), "index must >=0 and <= size"     return self._elements[index]    def __setitem__(self, index, value):     assert index >= 0 and index < len(self), "index must >=0 and <= size"     self._elements[index] = value    def __iter__(self):     return _ArrayIterator(self._elements)  class _ArrayIterator:   def __init__(self, theArray):     self._arrayRef = theArray     self._curNdr = 0    def __next__(self):     if self._curNdr < len(theArray):       entry = self._arrayRef[self._curNdr]       sllf._curNdr += 1       return entry     else:       raise StopIteration    def __iter__(self):     return self 
class Array2D :   def __init__(self, numRows, numCols):     self._theRows = Array(numCols)     for i in range(numCols):       self._theRows[i] = Array(numCols)    def numRows(self):     return len(self._theRows)    def numCols(self):     return len(self._theRows[0])    def clear(self, value):     for row in range(self.numRows):       self._theRows[row].clear(value)    def __getitem__(self, ndxTuple):     assert len(ndxTuple) == 2, "the tuple must 2"     row = ndxTuple[0]     col = ndxTuple[1]     assert row>=0 and row <len(self.numRows()) /     and col>=0 and col<len(self.numCols), /     "array subscrpt out of range"     theArray = self._theRows[row]     return theArray[col]    def __setitem__(self, ndxTuple, value):     assert len(ndxTuple)==2, "the tuple must 2"     row = ndxTuple[0]     col = ndxTuple[1]     assert row >= 0 and row < len(self.numRows) /     and col >= 0 and col < len(self.numCols), /     "row and col is invalidate"     theArray = self._theRows[row];     theArray[col] = value 

希望本文所述對大家的Python程序設(shè)計有所幫助。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 河池市| 健康| 甘南县| 潮安县| 连南| 三穗县| 鹿泉市| 浑源县| 安福县| 新竹市| 广西| 彭州市| 正蓝旗| 崇文区| 临城县| 内丘县| 五河县| 南涧| 道孚县| 宁德市| 资兴市| 河东区| 齐齐哈尔市| 高淳县| 常山县| 商洛市| 伊金霍洛旗| 崇信县| 尖扎县| 陈巴尔虎旗| 乐安县| 旬邑县| 报价| 迭部县| 澄迈县| 林甸县| 渝中区| 泉州市| 西林县| 凤庆县| 凤冈县|