- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 JavaFX 库对快速排序算法的分区部分进行动画处理。我把程序的所有图形部分都写下来了,但我的步骤方法遇到了问题。我的步骤方法中有一个逻辑错误,我似乎无法弄清楚它是什么。每次单击步骤按钮时,步骤方法应该执行一步。
private void quickSort(int lowerIndex, int higherIndex) {
int i = lowerIndex;
int j = higherIndex;
// calculate pivot number, I am taking pivot as middle index number
int pivot = array[lowerIndex+(higherIndex-lowerIndex)/2];
// Divide into two arrays
while (i <= j) {
/**
* In each iteration, we will identify a number from left side which
* is greater then the pivot value, and also we will identify a number
* from right side which is less then the pivot value. Once the search
* is done, then we exchange both numbers.
*/
while (array[i] < pivot) {
i++;
}
while (array[j] > pivot) {
j--;
}
if (i <= j) {
exchangeNumbers(i, j);
//move index to next position on both sides
i++;
j--;
}
}
// call quickSort() method recursively
if (lowerIndex < j)
quickSort(lowerIndex, j);
if (i < higherIndex)
quickSort(i, higherIndex);
}
上面的代码是快速排序算法的源代码,step方法应该只执行快速排序算法的一步。我尝试在步骤方法中实现相同的逻辑,但我的逻辑是错误的。该程序的正确输出位于此链接 http://www.cs.armstrong.edu/liang/animation/web/QuickSortPartition.html以供引用。
下面是我正在使用的代码
import java.util.Arrays;
import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Pane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Line;
import javafx.scene.shape.Rectangle;
import javafx.scene.text.Text;
import javafx.stage.Stage;
public class AnimateQuickSort extends Application {
public final static int ARRAY_SIZE = 20;
private int[] array = new int[ARRAY_SIZE];
private int leftP = 1;
private int rightP = array.length - 1;
private int pivot = 0;
public void start(Stage primaryStage) {
AnimationPane pane = new AnimationPane();
Button btStep = new Button("Step");
Button btReset = new Button("Reset");
HBox hBox = new HBox(5);
hBox.getChildren().addAll(btStep, btReset);
hBox.setAlignment(Pos.CENTER);
BorderPane borderPane = new BorderPane();
borderPane.setCenter(pane);
borderPane.setBottom(hBox);
// Create a scene and place it in the stage
Scene scene = new Scene(borderPane, 700, 225);
primaryStage.setTitle("QuickSort");
primaryStage.setScene(scene);
primaryStage.show();
initializeArray();
pane.repaint();
btStep.setOnAction(e -> {
if (step()) {
pane.repaint();
} else {
pane.repaint();
}
});
btReset.setOnAction(e -> {
reset();
pane.repaint();
});
}
public static void main(String[] args) {
launch(args);
}
public void initializeArray() {
for (int i = 0; i < array.length; i++) {
array[i] = (int) (Math.random() * 999 + 1);
}
// Arrays.sort(array);
}
public void reset() {
leftP = 1;
rightP = array.length - 1;
pivot = 0;
initializeArray();
}
public boolean step() {
// quicksort(array);
int begin = 0;
int pivotVal = array[0];
int array1;
if (leftP <= rightP && array[leftP] <= pivotVal) {
leftP++;
array1 = array[leftP];
array[leftP] = array[rightP];
array[rightP] = array1;
}
if (rightP >= leftP && array[rightP] > pivotVal) {
rightP--;
}
if (rightP > leftP) {
if (rightP != begin) {
array1 = array[rightP];
array[rightP] = array[begin];
array[begin] = array1;
}
}
// Return the index of the pivot element.
return true;
}
class AnimationPane extends Pane {
private int startingX = 20;
private int startingY = 20;
private int boxWidth = 30;
private int boxHeight = 20;
protected void repaint() {
this.getChildren().clear();
int x = startingX + 10;
int y = startingY + 40;
// Display array
x = startingX + 10;
getChildren().add(new Text(x - 15, y + 55, "Array "));
x += 20;
getChildren().add(new Text(x + pivot * boxWidth, y + 120, "Pivot"));
drawArrowLine(x + 15 + pivot * boxWidth, y + 100, x + 15 + pivot * boxWidth, y + 40 + boxHeight);
getChildren().add(new Text(x - 14 + leftP * boxWidth, startingY, "Left Pointer"));
drawArrowLine(x + 15 + leftP * boxWidth, startingY, x + 15 + leftP * boxWidth, y + 40);
getChildren().add(new Text(x - 14 + rightP * boxWidth, startingY, "Right Pointer"));
drawArrowLine(x + 15 + rightP * boxWidth, startingY, x + 15 + rightP * boxWidth, y + 40);
for (int k = 0; k < array.length; k++) {
Rectangle rectangle = new Rectangle(x, y + 40, boxWidth, boxHeight);
rectangle.setFill(Color.WHITE);
rectangle.setStroke(Color.BLACK);
getChildren().add(rectangle);
if (array[k] != 0) {
getChildren().add(new Text(x + 5, y + 55, array[k] + ""));
}
x = x + boxWidth;
}
}
public void drawArrowLine(double x1, double y1, double x2, double y2) {
getChildren().add(new Line(x1, y1, x2, y2));
// find slope of this line
double slope = ((((double) y1) - (double) y2)) / (((double) x1) - (((double) x2)));
double arctan = Math.atan(slope);
// This will flip the arrow 45 off of a
// perpendicular line at pt x2
double set45 = 1.57 / 2;
// arrows should always point towards i, not i+1
if (x1 < x2) {
// add 90 degrees to arrow lines
set45 = -1.57 * 1.5;
}
// set length of arrows
int arrlen = 15;
// draw arrows on line
getChildren().add(new Line(x2, y2, (x2 + (Math.cos(arctan + set45) * arrlen)),
((y2)) + (Math.sin(arctan + set45) * arrlen)));
getChildren().add(new Line(x2, y2, (x2 + (Math.cos(arctan - set45) * arrlen)),
((y2)) + (Math.sin(arctan - set45) * arrlen)));
}
}
}
最佳答案
如果没有协程,你就无法单步执行递归函数(Java 中有几个用于协程的库,但其中大多数都调整了 JVM 或字节码,所以不是真正的标准内容)。
你基本上有两个选择:
反转职责,如果可以的话:让 QuickSort 调用动画重绘,而不是调用单步 QuickSort 的动画。
或者,为了实现执行单步快速排序的函数,您将需要展开递归,这将要求您使用显式的 from- 堆栈来跟踪“深度”对。堆栈以“整个数组”开始;在函数的顶部,您弹出一个状态并对该范围进行排序;当您需要递归时,您将较小的范围插入堆栈;当堆栈为空时,您就完成了。
关于java - 快速排序算法的动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36961980/
如何更改循环中变量的名称?比如 number1 、 number2 、 number3 、 number4 ? var array = [2,4,6,8] func ap ( number1: Int
我想设置 View 的背景颜色并在一定延迟后将其更改为另一种颜色。这是我的尝试方式: print("setting color 1") self.view.backgroundColor = UICo
我在使用 express-session 时遇到问题。 session 数据不会在请求之间持续存在。 正如您在下面的代码中看到的那样,/join 路由设置了一些 session 属性,但是当 /sur
我试图从叶渲染器获得一个非常简单的结果,用于快速 Steam 的 for 循环。 我正在上传叶文件 HTML,因为它不接受此处格式正确的代码 - 下面的pizza.swift代码- import
你们中有人有什么好的链接可以与我分享吗?我正在寻找一个 FAST 程序员编辑器,它可以非常快速地打开包含超过 100, 000 行代码的文件?我目前正在使用记事本自动取款机,打开一个 29000 行长
我现在正在处理眼动追踪数据,因此拥有一个巨大的数据集(想想数百万行),因此希望有一种快速的方法来完成此任务。这是它的简化版本。 数据告诉您眼睛在每个时间点正在查看的位置以及我们正在查看的每个文件。 X
我是新手,想为计时器或其他设备选择提示音。 如何打开此列表,以选择其中一种声音? Alert sound list 最佳答案 您将无法在应用中使用系统声音。 但是,您可以包括自己的声音文件,并将其显示
我编写了以下代码来构建具有顺序字符串的数组。 它的工作方式与我预期的一样,但我希望它能更快地运行。有没有更有效的方法在PowerShell中产生我想要的结果? 我是PowerShell的新手,非常感谢
我有一个包含一些非唯一行的矩阵,例如: x 尝试 y <- rle(apply(x, 1, paste, collapse = " ")) # y$lengths is the vector con
我的函数“keyboardWillShown”有问题。所以我想要的是菜单打开时,菜单正好出现在键盘上方。它可以在Iphone 8 plus,8、7、6上完美运行。但是,当我在模拟器上运行Iphone
我正在尝试通过Swift 5中的HTTP get方法从API提取数据。它在启动时成功加载了数据,但是当我刷新页面时,它说“索引超出范围”,这是因为数据是不再会在我的日志中读取,因此索引中没有任何内容。
我想做什么: 从我的数据库中获取时间戳并将其转换为用户的时区。 我的代码: let tryItNow = "\(model.timestampName)" let format = D
给定字体名称和字体大小,如何查找字符串的宽度(CGFloat)? (目标是将UIView的宽度设置为足以容纳字符串的宽度。) 我有两个字符串:一个重复“1”,重复36次,另一个重复“M”,重复36次。
我正在尝试解析此JSON ["Items": ( { AccountBalance = 0; AlphabetType = 3; Description = "\U0631\U
我在UINavigationBar内放置了一个UILabel。 我想根据navigationBar的高度增加该标签的字体大小。当navigationBar很大时,我希望字体大小更大;当滚动并缩小nav
我想将用户输入限制为仅有效数字并使用以下内容: func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, rep
目前我有一个包含超过 100.000 张图像的数据库,它们大小不一或类似,但我想为我的公司制作以下内容: 我插入/上传一张图片,系统返回最有可能相同的图片。我不知道使用什么算法,但它需要快速。我可以预
在我的 swift 项目中,我有一个按钮,我想在标签上打印按下该按钮的时间。 如何解决这个问题? 最佳答案 添加到DHEERAJ的答案中,您只需在func press(sender: UIButton
我必须发表评论,尝试在解析中导入数组。然而,有一个问题。 当我尝试从 Parse 加载数组时,我的输出是 ("Blah","Blah","Blah")这是一个元组...而不是一个数组 TT... 如何
我的应用程序有一个名为 MyDevice 的类,我用它来与硬件通信。该硬件是可选的,实例变量也是可选的: var theDevice:MyDevice = nil 然后,在应用程序中,我必须初始化设备
我是一名优秀的程序员,十分优秀!