a1.sources = r1 a1.sinks = k1 a1.channels = c1 # Describe/configure the source a1.sources.r1.type = netcat a1.sources.r1.bind = localhost a1.sources.r... ...
分类:
Web程序 时间:
2017-05-17 00:51:41
阅读次数:
180
a1.sources = r1 a1.sinks = k1 k2 a1.channels = c1 # Describe/configure the source a1.sources.r1.type = netcat a1.sources.r1.bind = localhost a1.source... ...
分类:
Web程序 时间:
2017-05-17 00:49:52
阅读次数:
216
a1.sources = r1 a1.sinks = k1 a1.channels = c1 # Describe/configure the source a1.sources.r1.type = netcat a1.sources.r1.bind = localhost a1.sources.r... ...
分类:
Web程序 时间:
2017-05-17 00:49:15
阅读次数:
214
a1.sources = r1 a1.sinks = k1 a1.channels = c1 # Describe/configure the source a1.sources.r1.type = netcat a1.sources.r1.bind = localhost a1.sources.r... ...
分类:
Web程序 时间:
2017-05-17 00:47:42
阅读次数:
226
a1.sources = r1 a1.sinks = k1 k2 a1.channels = c1 c2 # Describe/configure the source a1.sources.r1.type = netcat a1.sources.r1.bind = localhost a1.sou... ...
分类:
Web程序 时间:
2017-05-17 00:40:08
阅读次数:
205
//按键加一或减一 #include #include int duan[]={0x3F,0x06,0x5B,0x4F,0x66,0x6D,0x7D,0x07,0x7F,0x6F};//共阴数码管0到9数字的十六进制 sbit K1 = P1^0; sbit K2 = P1^7; char num ... ...
分类:
其他好文 时间:
2017-05-16 16:19:27
阅读次数:
231
cat sorttest | sort | uniq -c | sort -k1 sorttest内容如下: ...
分类:
编程语言 时间:
2017-05-12 20:14:37
阅读次数:
110
B树相关概念 在B-树中查找给定关键字的方法是,首先把根结点取来,在根结点所包含的关键字K1,…,Kn查找给定的关键字(可用顺序查找或二分查找法),若找到等于给定值的关键字,则查找成功;否则,一定可以确定要查找的关键字在Ki与Ki+1之间,Pi为指向子树根节点的指针,此时取指针Pi所指的结点继续查找 ...
分类:
数据库 时间:
2017-05-11 16:05:12
阅读次数:
290
题目: Given two values k1 and k2 (where k1 < k2) and a root pointer to a Binary Search Tree. Find all the keys of tree in range k1 to k2. i.e. print all ...
分类:
其他好文 时间:
2017-05-10 13:13:49
阅读次数:
136
快速幂顾名思义就是快速求幂,也常用于求幂的模(余数) 例如求Xq,常规算法是乘q次X,时间复杂度为O(n),而快速幂复杂度为O(log2n),我们看下如何实现 n用二进制可写成2k1+2K2+...2kn 故Xn=X2^k1+2^k2+...+2^kn=X2^k1·X2^k2·...·X2^kn ...
分类:
其他好文 时间:
2017-05-07 23:11:58
阅读次数:
207