DescriptionA data stream is a real-time, continuous, ordered sequence of items. Some examples include sensor data, Internet traffic, financial tickers...
分类:
其他好文 时间:
2014-07-16 21:27:30
阅读次数:
198
Write a program to sort a stack in ascending order (with biggest items on top). You may use at most one additional stack to hold items, but you may no...
分类:
其他好文 时间:
2014-07-16 20:35:03
阅读次数:
288
ComboBox:组合框---属性:Text:选中的值Items:组合框中的项Add:添加单个的值AddRange:添加多个的值SelectedIndex:索引值 SelectedValue:隐藏值 ...
The + operator concatenates lists: Similarly, the * operator repeats a list a given number of items:List slicesThe slice operator also works...
分类:
其他好文 时间:
2014-07-13 19:42:02
阅读次数:
208
这里记录下堆的相关操作。
op 1:
'''
@ data: the heap array
@ p : index of parent item
@ n : number of data
@@ Swap p and it's son items, make p the largest of them
'''
def swapForMaxHeap(data, n, p):
l...
分类:
其他好文 时间:
2014-07-13 17:07:15
阅读次数:
223
第一、连接:telnet127.0.0.111211第二、按回车键第三、flush_all后回车控制台显示OK,表示操作成功说明:1、清空所有键值flush_all注:flush并不会将items删除,只是将所有的items标记为expired,因此这时memcache依旧占用所有内存。2、退出quit
分类:
其他好文 时间:
2014-07-13 15:22:22
阅读次数:
260
只需将textfield的hidden和hideLabel配置为true就可以了。只设置hidden:true时会显示出来一个:的标签。this.formpanel = new Ext.FormPanel({ items: [{ fieldLabel: '代码', name: 'FCode', an...
分类:
Web程序 时间:
2014-07-13 12:45:47
阅读次数:
222
点击进行安装,将会弹出错误提示是:Cannotcompletetheinstallbecauseoneormorerequireditemscouldnotbefound.Softwarebeinginstalled:AndroidDevelopmentTools16.0.1.v2011121502...
分类:
其他好文 时间:
2014-07-12 15:48:14
阅读次数:
262
题意:给定一个有向图,问有多少个点由任意顶点出发都能达到。分析:首先,在一个有向无环图中,能被所有点达到点,出度一定是0。先求出所有的强连通分支,然后把每个强连通分支收缩成一个点,重新建图,这样,这个有向图就变成了一个有向无环图。在这个新的图中,只需知道出度为0的点有几个即可。如果出度为0的点超过1...
分类:
其他好文 时间:
2014-07-12 13:38:59
阅读次数:
244
给一个有向图,问有多少结点是其他所有结点都可以到达的。
等价于,在一个有向无环图上,找出度为0 的结点,如果出度为0的结点只有一个,那么这个就是答案,如果大于1个,则答案是0。
这题有环,所以先缩点。求唯一出度为0的强连通分量。
#include
#include
#include
#include
#include
#define inf 0x3f3f3f3f
using na...
分类:
其他好文 时间:
2014-07-10 19:48:45
阅读次数:
192