gpt4 book ai didi

java - 伪代码转java

转载 作者:行者123 更新时间:2023-12-01 17:29:36 25 4
gpt4 key购买 nike

我环顾四周大约一个小时,但找不到有关此问题的任何帮助。我正在尝试将此伪代码转换为java,但无法弄清楚我做错了什么(它曾经打印任何内容)。

function line(x0, x1, y0, y1)
boolean steep := abs(y1 - y0) > abs(x1 - x0)
if steep then
swap(x0, y0)
swap(x1, y1)
if x0 > x1 then
swap(x0, x1)
swap(y0, y1)
int deltax := x1 - x0
int deltay := abs(y1 - y0)
real error := 0
real deltaerr := deltay / deltax
int ystep
int y := y0
if y0 < y1 then ystep := 1 else ystep := -1
for x from x0 to x1
if steep then plot(y,x) else plot(x,y)
error := error + deltaerr
if error ≥ 0.5 then
y := y + ystep
error := error - 1.0

我的转换是:

public static void line(int x0,int x1,int y0,int y1) {
boolean steep = Math.abs(y1 - y0) > Math.abs(x1 - x0);
if(steep) {
swap(x0, y0);
swap(x1, y1);
}
if (x0 > x1) {
swap(x0, x1);
swap(y0, y1);
}
int deltax = x1 - x0;
int deltay = Math.abs(y1 - y0);
float error = 0;
float deltaerr = deltay / (float)deltax;
int ystep;
int y = y0;

if(y0 < y1) ystep = 1;
else ystep = -1;

//for x from x0 to x1
for(int x = x0; x < x1;x++)
if (steep) plot(y,x);
else plot(x,y);
error = error + deltaerr;
if (error >= 0.5f) {
y = y + ystep;
error = error - 1.0f;
}
}

//method plot
private static void plot(int x, int y) {
System.out.println(x+":"+y);
}
//method swap
private static void swap(int x0, int x1) {
int copy = x0;
x0 = x1;
x1 = copy;
}

有人可以帮忙吗?

最佳答案

您不能使用类似于 intswap() 方法。由于它们是基元,因此它们按值传递,并且更改方法内的局部变量不会影响您用作参数的变量。
直接在 line() 方法中进行交换。

第二件事是您的 for 循环看起来错误。根据您的缩进,您可能希望在整个 block 周围使用大括号。

关于java - 伪代码转java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12341991/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com