Python数据结构之Array用法实例


Posted in Python onOctober 09, 2014

本文实例讲述了python数据结构之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程序设计有所帮助。

Python 相关文章推荐
python基础入门详解(文件输入/输出 内建类型 字典操作使用方法)
Dec 08 Python
在Python编程过程中用单元测试法调试代码的介绍
Apr 02 Python
浅谈Python中的数据类型
May 05 Python
python实现文本文件合并
Dec 29 Python
Windows中安装使用Virtualenv来创建独立Python环境
May 31 Python
python之文件的读写和文件目录以及文件夹的操作实现代码
Aug 28 Python
python+matplotlib绘制3D条形图实例代码
Jan 17 Python
ubuntu安装mysql pycharm sublime
Feb 20 Python
对web.py设置favicon.ico的方法详解
Dec 04 Python
python pyqtgraph 保存图片到本地的实例
Mar 14 Python
Python字符串及文本模式方法详解
Sep 10 Python
Python实现自动玩连连看的脚本分享
Apr 04 Python
python中pygame模块用法实例
Oct 09 #Python
python根据文件大小打log日志
Oct 09 #Python
python命令行参数解析OptionParser类用法实例
Oct 09 #Python
python测试驱动开发实例
Oct 08 #Python
python批量提交沙箱问题实例
Oct 08 #Python
python求pi的方法
Oct 08 #Python
python实现简单的TCP代理服务器
Oct 08 #Python
You might like
PHP正则的Unknown Modifier错误解决方法
2010/03/02 PHP
Linux下编译redis和phpredis的方法
2016/04/07 PHP
js Flash插入函数免激活代码
2009/03/31 Javascript
使用jquery实现图文切换效果另加特效
2013/01/20 Javascript
文本有关的样式和jQuery求对象的高宽问题分别说明
2013/08/30 Javascript
jquery事件与函数的使用介绍
2013/09/29 Javascript
javascript 上下banner替换具体实现
2013/11/14 Javascript
鼠标左键单击冲突的问题解决方法(防止冒泡)
2014/05/14 Javascript
jquery进行数组遍历如何跳出当前的each循环
2014/06/05 Javascript
Juery解决tablesorter中文排序和字符范围的方法
2015/05/06 Javascript
JQuery的常用选择器、过滤器、方法全面介绍
2016/05/25 Javascript
JS中关于正则的巧妙操作
2017/08/31 Javascript
vue实现全屏滚动效果(非fullpage.js)
2020/03/07 Javascript
[02:37]2018DOTA2亚洲邀请赛赛前采访 VP.no[o]ne心中最强SOLO是谁
2018/04/04 DOTA
python判断字符串编码的简单实现方法(使用chardet)
2016/07/01 Python
python贪婪匹配以及多行匹配的实例讲解
2018/04/19 Python
python读写csv文件方法详细总结
2019/07/05 Python
使用python批量修改文件名的方法(视频合并时)
2020/03/24 Python
浅谈Python 敏感词过滤的实现
2019/08/15 Python
Django中的cookie和session
2019/08/27 Python
Python HTTP下载文件并显示下载进度条功能的实现
2020/04/02 Python
python 窃取摄像头照片的实现示例
2021/01/08 Python
CSS3 选择器 基本选择器介绍
2012/01/21 HTML / CSS
台湾母婴用品限时团购:妈咪爱
2018/08/03 全球购物
英国领先的独立酒精饮料零售商:DrinkSupermarket
2021/01/13 全球购物
介绍一下Linux文件的记录形式
2012/04/18 面试题
技校教师求职简历的自我评价
2013/10/20 职场文书
决定成败的关键——创业计划书
2014/01/24 职场文书
应聘编辑自荐信范文
2014/03/12 职场文书
经济担保书范文
2014/04/02 职场文书
中学生学雷锋演讲稿
2014/04/26 职场文书
2014年禁毒工作总结
2014/11/24 职场文书
学习与创新自我评价
2015/03/09 职场文书
勤俭节约倡议书范文
2015/04/29 职场文书
旅游安全责任协议书
2016/03/22 职场文书
Ajax实现异步加载数据
2021/11/17 Javascript