摘要: Swap(LinkNode low,LinkNode high)//交换两个结点{ low->prior->next=high;high->prior=low->prior; high->next->prior=low; low->next=high->next; high->next=low; l... 阅读全文
posted @ 2015-11-13 18:07 止战 阅读(1323) 评论(0) 推荐(0) 编辑
摘要: 最近面试碰到的一个题目,业余时间用python实现的。拿到数据,先用sort 命令排序,也可再进一步去重复 sort -k 1,2 data.txt |uniq > data.new 1 # -*- coding:utf-8 -*- 2 3 #第一个字段是用户uid,第二个字段是商品tid,统计每... 阅读全文
posted @ 2015-11-13 17:45 止战 阅读(421) 评论(0) 推荐(0) 编辑