搜索资源列表
2008010
- 编写一个线段类 MyLine,要求如下: 主要属性有: x ,y ;类型为Point (查看API) 编写构造方法,如 MyLine(Point p1 , Point p2) 编写5个成员方法。如: 检查线段是否位于第一象限check()… 求线段的长度 length() … 判断两条直线是否相交(另一线段作为参数)。 编写一点到该线段(或延长线)的距离 其他方法。 注:编写方法时,考虑利用Point类的方法 编写测试程序-Write a segment
work2
- 定义直线类,并提供判断两条直线是否相交等功能。-Define a straight line class, and provide to determine whether two lines intersect and other functions.
MyLine
- 设置两条线,程序会告诉你这两条线是否相交,在第一象限有什么特征之类的。-Set up two lines, the program will tell you whether the two lines intersect, in the first quadrant characteristics of class.
test
- 布线问题:如图1所示,印刷电路板将布线区域划分成n*m个方格。精确的电路布线问题要求确定连接方格a的中点到b的中点的最短布线方案。在布线时,电路只能沿直线或直角布线,如图1所示。为了避免线路相交,已经布线的方格做了封锁标记(如图1中阴影部分),其他线路不允许穿过被封锁的方格。-The wiring problem: as shown in Figure 1, the printed circuit board wiring area is divided into n* m Box. Accur
Cross.class
- 编写程序建模二维平面坐标系中的直线,并提供函数实现判断两条直线是否相交。此题目要求提供多种构造函数。(练习设计类与构造函数)-Programming modeling of two-dimensional coordinate system lines, and provides functions to achieve determine whether two lines intersect. This topic requires a variety of constructors. (E
FiniteAutomaton
- Java实现有限自动机相关功能的工具包,包含:正则式与NFA,DFA的相互转化;DFA的交、并、差、补运算;判断一个DFA对应的正则集是否是无限集;列出一个有限正则集所包含的所有字符串,以及包含字符串的最小长度和最大长度;判断两个最小化DFA是否等价等。 代码已开源:https://a1e2w3@bitbucket.org/a1e2w3/dfa4java.git-Java implementation of finite automata related functions toolk