【题目】
Given a string S and a string T, count the number of distinct subsequences of T in S.
A subsequence of a string is a new string which is formed from the original string by deleting some (can be none) of the characters without disturbing the relati...
分类:
其他好文 时间:
2014-06-29 07:27:17
阅读次数:
210
下面先记录一下JS控制CSS所使用的方法.
1.使用javascript更改某个css class的属性...
.orig {
display: none;
}
你想要改变把他的display属性由none改为inline。
解决办法: 在IE里:
document.styleSheets[0].rules[0].style.disp...
分类:
编程语言 时间:
2014-06-20 12:00:34
阅读次数:
321
下面先记录一下JS控制CSS所使用的方法.
1.使用javascript更改某个css class的属性...
.orig {
display: none;
}
你想要改变把他的display属性由none改为inline。
解决办法: 在IE里:
document.styleSheets[0].rules[0].style.display = "inline";
在firefox里:...
分类:
编程语言 时间:
2014-06-20 09:45:57
阅读次数:
259
Normal 0 7.8 pt 0 2 false false false EN-US ZH-CN
X-NONE ...
分类:
系统相关 时间:
2014-06-13 13:44:22
阅读次数:
276
属性的用法:None : 禁用自动缩放。(默认时)Font
:根据类使用的字体(通常为系统字体)的维度控制缩放。Dpi : 根据显示分辨率控制缩放。常用分辨率为 96 和 120 DPI。Inherit :
根据类的父类的缩放模式控制缩放。如果不存在父类,则禁用自动缩放。如需要控件或窗体根据操作系统...
import sysfrom PyQt4 import QtGuifrom PyQt4 import
QtCore#Icon继承了QtGui.QWidget这个类class Icon(QtGui.QWidget): def
__init__(self,parent=None): ...
分类:
其他好文 时间:
2014-06-09 15:10:52
阅读次数:
227
自带动画函数show()方法和hide()方法调用show()函数会将该元素的display属性设置为none,将元素隐藏调用hide()函数会将该元素的display样式设置为原来的值,将元素重新显示Tip:使用该方法时,元素的宽度/高度/透明度是同时变化的。可以给该方法传递参数”fast”,”n...
分类:
Web程序 时间:
2014-06-09 00:12:35
阅读次数:
431
前面的步骤按说明书上就没有问题,但在移植内核时,当进行到
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- menuconfig
出现以下错误:
*** Unable to find the ncurses libraries or the
*** required header files.
*** 'make menuco...
分类:
其他好文 时间:
2014-06-08 10:40:46
阅读次数:
184
win7 64位 专业版 + vs2010 从vc6.0下转过来的一个项目,突然遇到这个问题。
解决方案:
用C:\Windows\winsxs\x86_netfx-cvtres_for_vc_and_vb_b03f5f7f11d50a3a_6.1.7600.16385_none_ba476986f...
分类:
其他好文 时间:
2014-06-07 16:56:07
阅读次数:
241
python实现的链表,包括插入、查找、删除操作
#!/usr/bin/python
class linknode():
def __init__(self,k,n=None):
self.key=k;
self.next=n;
def createlist(): #创建链表
n=raw_input("enter the num of nodes");
n=int(...
分类:
编程语言 时间:
2014-06-07 12:23:46
阅读次数:
204