文章列表
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; chars ...
- 2009-09-03 10:24
- 浏览 1024
- 评论(0)
document.write("<p>浏览器:")
document.write(navigator.appName + "</p>")
document.write("<p>浏览器版本:")
document.write(navigator.appVersion + "</p>")
document.write("<p>代码:")
document.write(navigator.appCodeName + &qu ...
- 2009-05-15 22:14
- 浏览 1029
- 评论(0)
<html>
<head>
<title>js控制div元素在页面的位置</title>
</head>
<style type="text/css">
#a{
background:#FF0000;
height: 100px;
width: 100px;
float: left;
}
#b{
background:#0000FF;
height: 100px;
width: 100px;
float: left;
position: abs ...
- 2009-05-15 22:10
- 浏览 4750
- 评论(0)
在http://www.python.org/下载了编译器,很方便、好用
#树节点类----------------------------------------
class TreeNode(object):
#初始化构造函数
def __init__(self,data,left,right):
self.data=data
self.left=left
self.right=right
pass
pass
#树---------------------------- ...
- 2009-04-25 23:26
- 浏览 1447
- 评论(0)
1.接口
定义一个接口 Cut ,并实现 java.io.Serializable
然后用抽象类 AbstractCut 实现 Cut 接口,所以 AbstractCut 子类可以实现对象序列化操作
2.抽象
MaxRightCut(最大向右分词) 和 MaxleftCut (最大向左分词) 继承 AbstractCut
3.实现
MaxRightCut 和 MaxleftCut 分别实现了AbstractCut 的抽象方法 abstract DLLNode cut(Set set, String doc);
4.组合
定义类 CutManager 具有两个属性,Cut(能使用分词方法) ...