You are given a tree (an acyclic undirected connected graph) with N nodes, and edges numbered 1, 2, 3...N-1. We will ask you to perfrom some instructi ...
分类:
其他好文 时间:
2019-02-07 10:47:56
阅读次数:
115
参考:https://jingyan.baidu.com/article/a378c960b47034b3282830bb.html https://ask.csdn.net/questions/720080 https://blog.csdn.net/solarnanocar/article/de ...
分类:
编程语言 时间:
2019-02-06 10:47:47
阅读次数:
331
在属性/方法名前有双下划线的,称为私有属性/方法,私有属性/方法外部不能直接访问, 一般访问类的私有属性,可以通过调用 使用了私有属性的方法 达到访问私有属性, 但python中并没有真正意义的私有,可以通过 _类名__属性/方法 来访问。 例: 有一个Woman类,内有私有属性 __age 和 私 ...
分类:
其他好文 时间:
2019-02-03 14:14:31
阅读次数:
194
这个函数用来编译一段字符串的源码,结果可以生成字节码或者AST(抽像语法树),字节码可以使用函数exec()来执行,而AST可以使用eval()来继续编译。 参数source是一串字符串的源码,或者是AST对象数组。 参数filename是读取字符串的文件对象,如果不是从文件里读取源码来编译,那么这 ...
分类:
编程语言 时间:
2019-02-02 10:37:08
阅读次数:
210
Xiao Ming and Xiao Bao are playing a simple Numbers game. In a round Xiao Ming can choose to write down a number, or ask Xiao Bao what the kth great n ...
分类:
其他好文 时间:
2019-01-27 13:03:02
阅读次数:
179
#include using namespace std; bool ask(int x,int y){ printf("? %d %d\n",x,y); fflush(stdout); char buf[4]; scanf("%s",buf); return buf[0]=='x'; } int ... ...
分类:
其他好文 时间:
2019-01-23 14:01:39
阅读次数:
142
Sphinx: 发音: DJ音标发音: [sfi?ks] KK音标发音: [sf??ks] 单词本身释义: an ancient imaginary creature with a lion's body and a woman's head Mythology A figure in Egypti... ...
分类:
编程语言 时间:
2019-01-21 13:52:26
阅读次数:
307
person=['B','C','D','E'] know=False def askway(address): #问路 if len(person)>0 and know is False: name=person.pop() def ask(): print('%s,你知道%s怎么走吗?'%(n... ...
分类:
其他好文 时间:
2019-01-15 14:30:34
阅读次数:
134
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <script> //有字符串如下: var a = 'name=ross&age=20&sex=woman'; //要求结果如下:{n ...
分类:
Web程序 时间:
2019-01-09 11:15:44
阅读次数:
160
原文:redis 系列27 Cluster高可用 (2)一. ASK错误 集群上篇最后讲到,对于重新分片由redis-trib负责执行,关于该工具以后再介绍。在进行重新分片期间,源节点向目标节点迁移一个槽的过程中,可以会出现该槽中的一部分键值对保存在源节点中,另一部份键值对则保存在目标节点中。 当客... ...
分类:
其他好文 时间:
2019-01-07 00:22:32
阅读次数:
196