gpt4 book ai didi

java - 我需要帮助将我的堆栈类链接到我的 TestBed 类

转载 作者:太空宇宙 更新时间:2023-11-04 14:59:18 26 4
gpt4 key购买 nike

import java.util.Random;

public class TestBed {

public static void main(String a[]) {
// creating the array
int[] array = new int[100];
Random random = new Random();
// changing the variable of my clone array for reference
int[] arr = cloneArray(array);

for (int i1 = 0; i1 < 100; i1++)
array[i1] = random.nextInt(100) + 1;
// print out of bubble sort before and after the sort
System.out
.println("***********************Bubble Sort ****************************");
arr = cloneArray(array);
System.out.println("Values Before the sort:\n");
printArray(arr);
System.out.println();
bubble_srt(arr);
System.out.print("Values after the sort:\n");
printArray(arr);
// print out of selection sort before and after the sort
System.out.println();
System.out
.println("********************Selection Sort*****************************");
System.out.println(" Selection Sort\n\n");
arr = cloneArray(array);
System.out.println("Values Before the sort:\n");
printArray(arr);
System.out.println();
selection_srt(arr);
System.out.print("Values after the sort:\n");
printArray(arr);

System.out.println();

Stack stack = new Stack();



}




public static int[] buildArray(int bound) {
return null;
}

// clone array as a data type
public static int[] cloneArray(int[] data) {
return (int[]) data.clone();
}

// print array as a data type
public static void printArray(int[] data) {

// while there are still numbers left in the array print out the next
// value

for (int i = 0; i < data.length; i++)
System.out.print(data[i] + " ");

}

// bubble syntax
public static void bubble_srt(int a[]) {
int t = 0;
for (int i = 0; i < a.length; i++) {
for (int j = 1; j < (a.length - i); j++) {
if (a[j - 1] > a[j]) {
t = a[j - 1];
a[j - 1] = a[j];
a[j] = t;
}
}
}
}

// selection syntax
public static void selection_srt(int array[]) {
for (int x = 0; x < array.length; x++) {
int index_of_min = x;
for (int y = x; y < array.length; y++) {
if (array[index_of_min] > array[y]) {
index_of_min = y;
}
}
int temp = array[x];
array[x] = array[index_of_min];
array[index_of_min] = temp;
}
}


}

从这里我必须链接我的堆栈类,但我不知道如何正确地将这两个类放在一起,我是编程新手,我的学校把我扔进了一个对我来说太高的java类,现在我陷入了5几周后。

public class Stack {
Node top;
int size;

public Stack() {
top = null;
size = 0;
}

public int pop() {
if (top != null) {
int item = top.data;
top = top.next;
size--;
return item;
}
return -1;
}

public void push(int data) {
Node t = new Node(data);
t.next = this.top;
this.top = t;
size++;
}

public boolean isEmpty() {
return size <= 0;
}

public int getSize() {
return size;
}

public int peek() {
return top.data;
}

public void printStack() {
Node n = this.top;
int pos = this.getSize();
while (pos > 0) {
System.out.println("Position: " + pos + " Element: " + n.data);
if (pos > 0) {
n = n.next;
}
pos--;

}
}
}

class Node {
public int data;
public Node next;

Node(int d) {
data = d;
next = null;
}

public int getData() {
return data;`enter code here`
}`enter code here`

{
Stack s = new Stack();
s.push(9);
s.push(2);
s.push(7);
s.push(3);
s.push(6);
s.push(4);
s.push(5);
System.out.println("Size is: " + s.getSize());
// s.printStack();
int size = s.getSize();
for (int i = 0; i < size; i++) {
System.out.print(s.pop() + " ");
}

}
}

最佳答案

在Stack类文件的开头,创建一个包名,例如:

package com.example.testcode;

然后在您的 TestBed 类文件中,从包中导入您的 Stack 类,例如:

import com.example.testcode.Stack;

关于java - 我需要帮助将我的堆栈类链接到我的 TestBed 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22801222/

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