码迷,mamicode.com
首页 >  
搜索关键字:enumerate    ( 668个结果
ROP
You get the idea right! We are going to enumerate all the ROP-Gadgets and then chain them together to craft our API call which will in turn disable DE...
分类:其他好文   时间:2014-07-16 21:56:06    阅读次数:221
Python获取两个ip之间的所有ip
int_ip = lambda x: '.'.join([str(x/(256**i)%256) for i in range(3,-1,-1)])ip_int = lambda x:sum([256**j*int(i) for j,i in enumerate(x.split('.')[::-1]...
分类:编程语言   时间:2014-07-06 21:21:30    阅读次数:281
python--获取list下标和值
for index, value in enumerate(list): print index, value
分类:编程语言   时间:2014-07-02 20:57:35    阅读次数:478
python之enumerate()函数的探究
原地址:http://www.newsmth.net/nForum/#!article/Python/95860最近用到enumerate()函数,于是查了相关的资料。 其中的一篇是这样的:一般情况下,如果要对一个列表或者数组既要遍历索引又要遍历元素时,可以用enumerate比如:for inde...
分类:编程语言   时间:2014-06-18 09:59:20    阅读次数:217
写好Python之For循环
# 写好Python之For循环## 使用在循环中使用enumerate函数而不是使用"index"变量从其他语言转过来的Python程序员,过去可能通常通过使用申明一个变量来跟踪遍历索引,,例如在C++: for (int i=0; i < container.size(); ++i) { //....
分类:编程语言   时间:2014-06-16 23:51:31    阅读次数:423
Python高级编程
List Comprehension1.列表推导 [i for i in range(10) if i%2 == 0] -> [0, 2, 4, 6, 8], i也可以是一个函数,该风格比C语言思想的代码风格效率高2.enumerate 取到了序列中的序列号好内容forindex,iteminenu...
分类:编程语言   时间:2014-06-03 09:08:01    阅读次数:254
HDU-3548-Enumerate the Triangles
求由所有的点组成的三角形中周长最小的三角形的周长1.将所有的点按横坐标大小排序2.从第一个点开始往后枚举,判断能否组成三角形,判断当前三角形周长是否小于已经得到的最小周长代码如下:#include#include#include#includeusing namespace std;const do...
分类:其他好文   时间:2014-04-29 21:14:42    阅读次数:504
six solutions to a single symmetrical problem
Problem description:given a string, find the longest palindrome string in itSolution:1.brute force O(n^3)just enumerate start and end of the substring...
分类:其他好文   时间:2014-04-29 17:22:46    阅读次数:308
668条   上一页 1 ... 65 66 67
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!