Given an array of integers with possible duplicates, randomly output the index of a given target number. You can assume that the given target number m ...
分类:
其他好文 时间:
2017-04-24 19:01:58
阅读次数:
179
一. +load源码分析extern bool hasLoadMethods(const headerType *mhdr);
extern void prepare_load_methods(con...
分类:
移动开发 时间:
2017-04-24 17:48:10
阅读次数:
203
参考:http://www.ruanyifeng.com/blog/2015/04/tail-call.html 什么是尾递归呢? 函数最后一步是调用自身,就称为尾递归。 尾递归可以用循环实现。 什么是尾调用: 某个函数的最后一步是调用另一个函数。 上面代码中,函数f的最后一步是调用函数g,这就叫尾 ...
分类:
其他好文 时间:
2017-04-24 12:25:41
阅读次数:
121
2017-04-24 00:20:34.821 _thdTimer before2017-04-24 00:20:34.821 _thdTimer after2017-04-24 00:20:36.827 threading timer tick2017-04-24 00:20:39.839 thr ...
分类:
其他好文 时间:
2017-04-24 01:06:28
阅读次数:
167
主要有两个坑 1.XXXSLICE相关的opcode 由于编译和运行的时候,这些宏定义是连续的,所以python源代码中会以SLICE+1,opcode - SLICE & 1等方式进行操作 如果置换的时候不连续,就会出问题 2.CALL_FUNCTIONXXX相关的opcode 与1问题类似,ce ...
分类:
编程语言 时间:
2017-04-24 00:08:45
阅读次数:
339
CUCM上的配置1-Device-gateway-选择对应的路由器型号,选择协议MGCP2-Domainname:router_2811.yeslab.net(ipdomainnameyeslab.net)3-CUCMgroup:default4-Moduleinslot0:<对应板卡/对应接口>showdiag5-Devicepool:default6-call分类:Offnet7-Changeselectionorder:TopDown..
分类:
其他好文 时间:
2017-04-23 23:13:58
阅读次数:
190
// 传入 地址栏中 key 返回对应的value值getUrlParamValue:function (param) { // 判断是否为null 或者空字符 if(null == param && "" == param) return null; var reg = new RegExp("( ...
分类:
其他好文 时间:
2017-04-23 16:52:40
阅读次数:
158
类的特殊成员之call#!/usr/bin/envpython#_*_coding:utf-8_*_classSpecialMembers:#类的构造方法def__init__(self):print("MyBlogisUrl:http://yw666.blog.51cto.com")#对象的构造方法def__call__(self):print("MyNameis:Yangwen")#创建一个对象,并且执行类的构造方法obj=Spec..
分类:
编程语言 时间:
2017-04-23 13:15:31
阅读次数:
252
As you very well know, this year's funkiest numbers are so called triangular numbers (that is, integers that are representable as , where k is some po ...
分类:
其他好文 时间:
2017-04-23 12:39:15
阅读次数:
173
Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell,where "adjacen ...
分类:
其他好文 时间:
2017-04-23 11:57:35
阅读次数:
188