翼度科技»论坛 编程开发 python 查看内容

Python循环数组的方法

5

主题

5

帖子

15

积分

新手上路

Rank: 1

积分
15
Python的遍历数组的三种方式。
遍历方式

假设:nums=[4,5,6,10,1]
第一种,for in的语法,这种语法很方便,但是在写Python算法里面用到的少
  1. for num in nums:
  2.   print (num)
复制代码
第二种是下标访问,range生成0到数组最大长度的下标数组
  1. for index in range(len(nums)):
  2.   print (index,nums[index])
复制代码
第三种是enumerate生成索引序列序列,包含下标和元素
  1. for index,num in enumerate(nums):
  2.   print (index, num)
复制代码
实际的算法面试中经常会使用第二种和第三种。
我们看下二和三的耗时。
  1. import time
  2. nums=range(1000000)
  3. #Python小白学习交流群:153708845
  4. start=time.time()
  5. for index in range(len(nums)):
  6.   a = nums[index]
  7. end=time.time()
  8. cost = end - start
  9. print (cost)
  10. start=time.time()
  11. for index,num in enumerate(nums):
  12.   a = nums
  13. end=time.time()
  14. cost = end - start
  15. print (cost)
复制代码
遍历方式二:0.122675895691s
遍历方式三:0.114228963852s
可以看出第三种比第二种的性能稍微好一些,可能在数据量更大的时候会更好。

来源:https://www.cnblogs.com/xxpythonxx/p/17805545.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具