Python实现比较两个列表(list)范围


Posted in Python onJune 12, 2015

有一道题: 比较两个列表范围,如果包含的话,返回TRUE,否则FALSE。 详细题目如下:

Create a function, this function receives two lists as parameters, each list indicates a scope of numbers, the function judges whether list2 is included in list1.

 Function signature:
    differ_scope(list1, list2)

 Parameters:
    list1, list2    - list1 and list2 are constructed with strings,
                      each string indicates a number or a scope of
                      numbers. The number or scope are randomly, can
                      be overlapped. All numbers are positive.

                        E.g.
                            ['23', '44-67', '12', '3', '20-90']
 Return Values:
    True            - if all scopes and numbers indicated by list2 are included in list1.
    False           - if any scope or number in list2 is out of the range in list1.
 Examples:
    case1    - list1 = ['23', '44-67', '12', '3', '20-90']
               list2 = ['22-34', '33', 45', '60-61']
               differ_scope(list1, list2) == True
    case2    - list1 = ['23', '44-67', '12', '3', '20-90']
               list2 = ['22-34', '33', 45', '60-61', '100']
               differ_scope(list1, list2) == False

贴上自己写的代码如下:(备注: python 2.7.6)

def differ_scope(list1, list2): 
  print "list1:" + str(list1) 
  print "list2:" + str(list2) 
  #设置临时存放列表 
  list1_not_ = [] #用于存放列表1正常的数字值,当然要用int()来转换 
  list1_yes_ = [] #用于存放列表1中范围值如 44-67 
  list1_final = [] #用于存放列表1中最终范围值 如:[1,2,3,4,5,6,7,8,9,10] 
  temp1    = [] 
   
  list2_not_ = []  #用于存放列表2正常的数字值,当然要用int()来转换 
  list2_yes_ = []  #用于存放列表2中范围值如 44-67 
  list2_final= []  #用于存放列表2中最终范围值 如:[1,2,3,4,5,6,7,8,9,10] 
  temp2   = [] 
 
  temp    = []  #用于存放列表1,与列表2比较后的列表,从而判断结果为True还是False. 
   
  #对列表1进行处理 
  for i in range(len(list1)): #用FOR循环对列表1进行遍历 
    tag = 0 
    if list1[i].find('-')>0:#对含范围的数字进行处理,放到list_yes_列表中  
      strlist = list1[i].split('-') 
    list1_yes_ = range(int(strlist[0]),int(strlist[1])+1)#让其生成一个范围列表 
    for each in list1_yes_:     #FOR循环遍历所有符合条件的. 
        [temp1.append(each)] 
    else:           #对列表1中正常的数字进行处理,放到list_not_列表中 
      list1_not_.append(int(list1[i]))#对列表1中进行处理,放到list_yes_    
  [temp1.append(i) for i in list1_not_ if not i in temp1]#去除重复项 
  list1_final = sorted(temp1) #比较后,排序,并放到list1_final列表中 
  print "list1_final value is:" + str(list1_final)#打印排序后最终list1_final列表 
 
   
  #对列表2进行处理 
  for i in range(len(list2)): 
    if list2[i].find('-')>0: 
      strlist = list2[i].split('-') 
    list2_yes_ = range(int(strlist[0]),int(strlist[1])+1) 
    for each in list2_yes_: 
        [temp2.append(each)] 
      print "Temp2:" + str(temp2) 
    else: 
      list2_not_.append(int(list2[i])) 
  [temp2.append(i) for i in list2_not_ if not i in temp2] 
  list2_final = sorted(temp2) 
  print "list2_final value is:" + str(list2_final) 
 
  #对两个列表进行比较,得出最终比较结果. 
  [temp.append(i) for i in list2_final if not i in list1_final]#比较两个列表差值. 
  print "In list2 but not in list1:%s" % (temp)#打印出列表1与列表2的差值 
  if len(temp)>=1 : 
    print "The result is: False" 
  else: 
    print "The result is: True" 
 
if __name__ == '__main__': 
  list1 = ['23', '44-67', '12', '3','90-100'] 
  list2 = ['22-34', '33', '45'] 
  differ_scope(list1,list2)

总结:
1. 这道题关键是想法,如果整成坐标的方式来比较,会很麻烦。
2. 列表转成范围后,如果消除重复项,同样是里面的关键所在。
3. 其次是对列表遍历的操作,同样挺重要。

Python 相关文章推荐
python实现DNS正向查询、反向查询的例子
Apr 25 Python
Python学习笔记_数据排序方法
May 22 Python
python解析xml文件操作实例
Oct 05 Python
以Flask为例讲解Python的框架的使用方法
Apr 29 Python
Python实现读写sqlite3数据库并将统计数据写入Excel的方法示例
Aug 07 Python
基于Python对象引用、可变性和垃圾回收详解
Aug 21 Python
使用Python的toolz库开始函数式编程的方法
Nov 15 Python
Python获取命令实时输出-原样彩色输出并返回输出结果的示例
Jul 11 Python
python主要用于哪些方向
Jul 05 Python
如何基于Python Matplotlib实现网格动画
Jul 20 Python
python 多线程爬取壁纸网站的示例
Feb 20 Python
Python线程池与GIL全局锁实现抽奖小案例
Apr 13 Python
在Linux系统上安装Python的Scrapy框架的教程
Jun 11 #Python
Python语言实现机器学习的K-近邻算法
Jun 11 #Python
在Linux下使用Python的matplotlib绘制数据图的教程
Jun 11 #Python
python中的代码编码格式转换问题
Jun 10 #Python
python实现数独算法实例
Jun 09 #Python
python中的全局变量用法分析
Jun 09 #Python
python简单实现计算过期时间的方法
Jun 09 #Python
You might like
解析百度搜索结果link?url=参数分析 (全)
2012/10/09 PHP
PHP生成不重复随机数的方法汇总
2014/11/19 PHP
discuz图片顺序混乱解决方案
2015/07/29 PHP
php简单获取复选框值的方法
2016/05/11 PHP
javascript面向对象编程代码
2011/12/19 Javascript
ASP.NET jQuery 实例12 通过使用jQuery validation插件简单实现用户注册页面验证功能
2012/02/03 Javascript
Jquery实现显示和隐藏的4种简单方式
2013/08/28 Javascript
javaScript实现浮点数转十六进制字符
2013/10/29 Javascript
js处理自己不能定义二维数组的方法详解
2014/03/03 Javascript
Ajax局部更新导致JS事件重复触发问题的解决方法
2014/10/14 Javascript
jQuery中dequeue()方法用法实例
2014/12/29 Javascript
理解jquery事件冒泡
2016/01/03 Javascript
基于javascript简单实现对身份证校验
2021/01/25 Javascript
jQuery+CSS3实现仿花瓣网固定顶部位置带悬浮效果的导航菜单
2016/09/21 Javascript
Node.js设置CORS跨域请求中多域名白名单的方法
2017/03/28 Javascript
Express之托管静态文件的方法
2018/06/01 Javascript
webpack打包nodejs项目的方法
2018/09/26 NodeJs
vuedraggable+element ui实现页面控件拖拽排序效果
2020/07/29 Javascript
JavaScript实现的拼图算法分析
2019/02/13 Javascript
JavaScript提升机制Hoisting详解
2019/10/23 Javascript
关于vue里页面的缓存详解
2019/11/04 Javascript
python 字典(dict)遍历的四种方法性能测试报告
2014/06/25 Python
通过实例浅析Python对比C语言的编程思想差异
2015/08/30 Python
Python使用SocketServer模块编写基本服务器程序的教程
2016/07/12 Python
Django中ORM表的创建和增删改查方法示例
2017/11/15 Python
使用python读取txt文件的内容,并删除重复的行数方法
2018/04/18 Python
用Python中的turtle模块画图两只小羊方法
2019/04/09 Python
Python生成个性签名图片获取GUI过程解析
2019/12/16 Python
CSS3中box-shadow的用法介绍
2015/07/15 HTML / CSS
HTML5中语义化 b 和 i 标签
2008/10/17 HTML / CSS
类成员函数的重载、覆盖和隐藏区别
2016/01/27 面试题
Why do we need Unit test
2013/01/03 面试题
2014年重阳节老干部座谈会上的讲话稿
2014/09/25 职场文书
2014年学校德育工作总结
2014/12/05 职场文书
五年级学生评语大全
2014/12/26 职场文书
农村婚礼司仪主持词
2015/06/29 职场文书