IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> PHP知识库 -> Java黑皮书课后题第10章:*10.15(几何:边框)边框是指包围一个二维平面上点集的最小矩形,编写一个方法,为二维平面上一系列点返回一个边框 -> 正文阅读

[PHP知识库]Java黑皮书课后题第10章:*10.15(几何:边框)边框是指包围一个二维平面上点集的最小矩形,编写一个方法,为二维平面上一系列点返回一个边框

*10.15编写一个方法,为二维平面上一系列点返回一个边框

题目

在这里插入图片描述
点击这里跳转编程练习题10.13

程序

Test15.java:测试程序
Test13_MyRectangle2D.java:编程练习题10.13构造程序

代码

Test15.java

import java.util.Scanner;

public class Test15 {
    public static void main(String[] args) {
        // 获取5个点的坐标
        double[][] points = new double[5][2];
        System.out.print("Enter five points: ");
        Scanner input = new Scanner(System.in);
        for (int m = 0 ; m < 5 ; m++){
            for (int n = 0 ; n < 2 ; n++){
                points[m][n] = input.nextDouble();
            }
        }

        // 结束结果
        Test13_MyRectangle2D mt = getRectangle(points);
        System.out.print("The bounding rectangle's center (" + mt.getX() + ", " + mt.getY() +
                "), width " +mt.getWidth() + ", height " + mt.getHeight());
    }
    public static Test13_MyRectangle2D getRectangle(double[][] points){
        double xMax = points[0][0], yMax = points[0][1], xMin = points[0][0], yMin = points[0][1];
        for (int a = 0 ; a < points.length ; a++){
            if (points[a][0] > xMax)
                xMax = points[a][0];
            if (points[a][0] < xMin)
                xMin = points[a][0];
            if (points[a][1] > yMax)
                yMax = points[a][1];
            if (points[a][1] < yMin)
                yMin = points[a][1];
        }
        return new Test13_MyRectangle2D((xMax + xMin) / 2, (yMax + yMin) / 2, xMax - xMin, yMax - yMin);
    }
}

Test13_MyRectangle2D.java

public class Test13_MyRectangle2D {
    private double x, y;
    public double getX() {
        return x;
    }
    public void setX(double x) {
        this.x = x;
    }
    public double getY() {
        return y;
    }
    public void setY(double y) {
        this.y = y;
    }

    private double width, height;
    public double getWidth() {
        return width;
    }
    public void setWidth(double width) {
        this.width = width;
    }
    public double getHeight() {
        return height;
    }
    public void setHeight(double height) {
        this.height = height;
    }

    public Test13_MyRectangle2D(){
        x = 0;
        y = 0;
        width = 1;
        height = 1;
    }
    public Test13_MyRectangle2D(double x, double y, double width, double height){
        this.x = x;
        this.y = y;
        this.width = width;
        this.height = height;
    }

    public double getArea(){
        return width * height;
    }

    public double getPerimeter(){
        return 2 * (width + height);
    }

    public boolean contains(double x, double y){
        boolean bool1 = false, bool2 = false;
        if (x > this.x - width / 2 && x < this.x + width / 2)
            bool1 = true;
        if (y > this.y - height / 2 && y < this.y + height / 2)
            bool2 = true;
        return bool1 && bool2;
    }

    public boolean contains(Test13_MyRectangle2D r){
        return ((Math.abs(x - r.x)) < width / 2) && (Math.abs(y - r.y) < height / 2);
    }

    public boolean overlaps(Test13_MyRectangle2D r){
        return ((Math.abs(x - r.x)) < (width / 2 + r.width / 2)) && (Math.abs(y - r.y) < (height / 2 + r.height / 2));
    }
}

运行结果

Enter five points:1.0 2.5 3 4 5 6 7 8 9 10
The bounding rectangle's center (5.0, 6.25), width 8.0, height 7.5
  PHP知识库 最新文章
Laravel 下实现 Google 2fa 验证
UUCTF WP
DASCTF10月 web
XAMPP任意命令执行提升权限漏洞(CVE-2020-
[GYCTF2020]Easyphp
iwebsec靶场 代码执行关卡通关笔记
多个线程同步执行,多个线程依次执行,多个
php 没事记录下常用方法 (TP5.1)
php之jwt
2021-09-18
上一篇文章      下一篇文章      查看所有文章
加:2021-09-22 14:26:09  更:2021-09-22 14:28:13 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 23:38:50-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码