如何从一个1G的文件中找到你所需要的东西,这个问题貌似面试的时候会经常问到.不过不论你用什么语言,肯定逃脱不了按指针读或者按块读. 这里介绍python的用法.本人亲自实验了,速度还可以. 如果你的文件还不是很大,那么最好的方式: with open('log2.txt') as f: for line in f: print line.strip() 貌似这种方式是最快的,不过如果再大点的话,还是比较耗时 这里有个日志文件,请看格式: 现在我们想把开始时间为2015-07-18-18:58:0…
Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given [100, 4, 200, 1, 3, 2],The longest consecutive elements sequence is [1, 2, 3, 4]. Return its length: 4.Your algorithm should run in O(…