私は再帰的に再帰的に深度を定義する引数 "n"を持つ行を描画するプログラムを終了しました。私は2つの機能を持っています.1つは相対的に左の線を描画し、もう1つは比較的右の線を描画します。私はそれを最初の4つのレベルで動作するように見えるが、その後、線が正確に表現するには小さすぎるか、線の間の区切りが恣意的に見えるので、私のコードに何か問題がある。誰かが自分のコードをテストして問題の原因を見つけることができるかどうかを確かめることを望んでいました。プログラムのデバッグを確認してください
次の画像は、EDIT
深さ10です:
public class Art
{
//draws the relatively left line
public static void drawLeftLine(double x0, double y0, double x1, double y1)
{
//define new x coordinate for line
//double x2 = (1/3.0)*(x1 - x0);
//color of line
StdDraw.setPenColor(StdDraw.BLUE);
//draw line by adding new x coord to original
StdDraw.line(x0, y0, x1, y1);
}
//draw relatively right line
public static void drawRightLine(double x0, double y0, double x1, double y1)
{
//define new x coord for line
//double x2 = (2/3.0)*(x1 - x0);
//color of line
StdDraw.setPenColor(StdDraw.BLUE);
//draw line by adding new x coord to original
StdDraw.line(x0, y0, x1, y1);
}
public static void cantor(int n, double x0, double y0, double x1, double y1)
{
if (n == 0)
return;
drawLeftLine(x0, y0, x1, y1);
drawRightLine(x0, y0, x1, y1);
y0 = y0 - 0.1;
y1 = y1 - 0.1;
cantor(n-1, x0, y0, x0 + ((x1 - x0))/3.0, y1); //left
cantor(n-1, (2.0/ 3) * (x1 - x0) + x0, y0, x1, y1); //right
}
public static void main(String[] args)
{
//change n into integer (depth)
int n = Integer.parseInt(args[0]);
//specify inital values for line
double x0 = 0;
double y0 = 0.9;
double x1 = 0.9;
double y1 = 0.9;
//recursive function cantor
cantor(n, x0, y0, x1, y1);
}
}
私は実際にこのプロジェクトのキャンバスサイズを混乱させることは許されませんが、私は数分でこれを実装しようとしています。それは素晴らしいと、おそらくグラフィカルなエラーであることを聞いて素晴らしいです。あなたは男です!ありがとうございました! – user2782981